Tab Color Settings for Gainsight

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

Co to jest Tab Color Settings for Gainsight?

Tab Color Settings for Gainsight to rozszerzenie Chrome opracowane przez Jean Nairon - Valuize, a jego główną funkcją jest „Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Tab Color Settings for Gainsight

Pobierz pliki rozszerzeń Tab Color Settings for Gainsight w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Color Settings for Gainsight Tab Color Settings for Gainsight
ID efmioncohocoalnmconhjddflifjkdjb
Oficjalny URL https://chromewebstore.google.com/detail/tab-color-settings-for-ga/efmioncohocoalnmconhjddflifjkdjb
Opis Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.
Rozmiar pliku 73.42 KB
Liczba instalacji 71
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-09-17
Data Publikacji 2020-09-17
Deweloper Jean Nairon - Valuize
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}