Tab Color Settings for Gainsight
Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.
Was ist Tab Color Settings for Gainsight?
Tab Color Settings for Gainsight ist eine Chrome-Erweiterung, die von Jean Nairon - Valuize entwickelt wurde, und ihr Hauptmerkmal ist "Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.".
Erweiterungsscreenshots
Tab Color Settings for Gainsight-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tab Color Settings for Gainsight-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Tab Color Settings for Gainsight |
ID | efmioncohocoalnmconhjddflifjkdjb |
Offizielle URL | https://chromewebstore.google.com/detail/tab-color-settings-for-ga/efmioncohocoalnmconhjddflifjkdjb |
Beschreibung | Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in. |
Dateigröße | 73.42 KB |
Installationsanzahl | 71 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2020-09-17 |
Veröffentlichungsdatum | 2020-09-17 |
Entwickler | Jean Nairon - Valuize |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |