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 là gì?

Tab Color Settings for Gainsight là một tiện ích mở rộng Chrome được phát triển bởi Jean Nairon - Valuize, và tính năng chính của nó là "Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Color Settings for Gainsight

Tải xuống các tệp mở rộng Tab Color Settings for Gainsight dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Color Settings for Gainsight Tab Color Settings for Gainsight
ID efmioncohocoalnmconhjddflifjkdjb
URL Chính Thức https://chromewebstore.google.com/detail/tab-color-settings-for-ga/efmioncohocoalnmconhjddflifjkdjb
Mô tả Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.
Kích Thước Tệp 73.42 KB
Số Lần Cài Đặt 71
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-09-17
Ngày Phát Hành 2020-09-17
Nhà Phát Triển Jean Nairon - Valuize
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}