Tab Color Settings for Gainsight
Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.
Qu'est-ce que Tab Color Settings for Gainsight ?
Tab Color Settings for Gainsight est une extension Chrome développée par Jean Nairon - Valuize, et sa fonction principale est "Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Color Settings for Gainsight
Téléchargez les fichiers d'extension Tab Color Settings for Gainsight au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in. Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in. Create a unique colored Gainsight favicons for production and sandbox environments. This extension was created by Valuize for Gainsight administrators to make your life easier when you work in multiple environments at the same time.
Informations de Base sur l'Extension
Nom | Tab Color Settings for Gainsight |
ID | efmioncohocoalnmconhjddflifjkdjb |
URL Officiel | https://chromewebstore.google.com/detail/tab-color-settings-for-ga/efmioncohocoalnmconhjddflifjkdjb |
Description | Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in. |
Taille du Fichier | 73.42 KB |
Nombre d'Installations | 71 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2020-09-17 |
Date de Publication | 2020-09-17 |
Développeur | Jean Nairon - Valuize |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Color Settings for Gainsight", "description": "Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.", "version": "1.0.1", "permissions": [ "tabs", "storage", "webNavigation" ], "icons": { "128": "assets\/logo-inactive.png" }, "browser_action": { "default_icon": "assets\/logo-inactive.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.gainsightcloud.com\/*" ], "js": [ "contentScript.js" ] } ] } |