Tab Color Settings for Gainsight

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

Wat is Tab Color Settings for Gainsight?

Tab Color Settings for Gainsight is een Chrome-extensie ontwikkeld door Jean Nairon - Valuize, en de belangrijkste functie is "Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Tab Color Settings for Gainsight

Download Tab Color Settings for Gainsight-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Tab Color Settings for Gainsight Tab Color Settings for Gainsight
ID efmioncohocoalnmconhjddflifjkdjb
Officiële URL https://chromewebstore.google.com/detail/tab-color-settings-for-ga/efmioncohocoalnmconhjddflifjkdjb
Beschrijving Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.
Bestandsgrootte 73.42 KB
Aantal Installaties 71
Huidige Versie 1.0.1
Laatst Bijgewerkt 2020-09-17
Publicatiedatum 2020-09-17
Ontwikkelaar Jean Nairon - Valuize
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}