Tab Color Settings for Gainsight

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

Tab Color Settings for Gainsightとは何ですか?

Tab Color Settings for GainsightはJean Nairon - Valuizeによって開発されたChromeの拡張機能で、その主な機能は「Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Tab Color Settings for Gainsight拡張機能のCRXファイルをダウンロード

Tab Color Settings for Gainsight拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Tab Color Settings for Gainsight Tab Color Settings for Gainsight
ID efmioncohocoalnmconhjddflifjkdjb
公式URL https://chromewebstore.google.com/detail/tab-color-settings-for-ga/efmioncohocoalnmconhjddflifjkdjb
説明 Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.
ファイルサイズ 73.42 KB
インストール数 71
現在のバージョン 1.0.1
最終更新日 2020-09-17
公開日 2020-09-17
開発者 Jean Nairon - Valuize
Eメール [email protected]
支払い方法 free
対応言語 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"
            ]
        }
    ]
}