Tab Color Settings for Gainsight

Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.

Cos'è Tab Color Settings for Gainsight?

Tab Color Settings for Gainsight è un'estensione di Chrome sviluppata da Jean Nairon - Valuize, e la sua funzione principale è "Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Tab Color Settings for Gainsight

Scarica i file di estensione Tab Color Settings for Gainsight in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Tab Color Settings for Gainsight Tab Color Settings for Gainsight
ID efmioncohocoalnmconhjddflifjkdjb
URL Ufficiale https://chromewebstore.google.com/detail/tab-color-settings-for-ga/efmioncohocoalnmconhjddflifjkdjb
Descrizione Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.
Dimensione del File 73.42 KB
Conteggio Installazioni 71
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-09-17
Data di Pubblicazione 2020-09-17
Sviluppatore Jean Nairon - Valuize
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}