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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jean Nairon - Valuize และคุณลักษณะหลักของมันคือ "Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Color Settings for Gainsight
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
อีเมล | [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" ] } ] } |