Env Specific Favicon
Browser extension to customize favicons based on URL and title regex matching
什麼是Env Specific Favicon?
Env Specific Favicon是由Elliot Lintz開發的Chrome擴展程式,該擴展的主要功能是“Browser extension to customize favicons based on URL and title regex matching”。
擴展截圖
下載Env Specific Favicon擴展crx文件
下載Env Specific Favicon擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Target any webpages with its URL or title and change its favicon. This enables you to differentiate favicons shared across multiple websites or environments. If your rule isn't working, make sure your pattern is correct with online tools like regex101.com.
擴展基本資訊
名稱 | Env Specific Favicon |
ID | licfgcgpjgbbankegljcpbklabdnmopl |
官方網址 | https://chromewebstore.google.com/detail/env-specific-favicon/licfgcgpjgbbankegljcpbklabdnmopl |
簡介 | Browser extension to customize favicons based on URL and title regex matching |
檔案大小 | 240 KB |
安裝次數 | 129 |
目前版本 | 1.3.1 |
更新時間 | 2024-02-06 |
上架時間 | 2022-04-10 |
評分 | 4.33/5 共 6 次評分 |
開發者 | Elliot Lintz |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Elliot67/env-specific-favicon |
說明頁面URL | https://github.com/Elliot67/env-specific-favicon/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Env Specific Favicon", "author": "Elliot Lintz", "version": "1.3.1", "description": "Browser extension to customize favicons based on URL and title regex matching", "homepage_url": "https:\/\/github.com\/Elliot67\/env-specific-favicon", "action": { "default_icon": ".\/assets\/icon-512.png", "default_popup": ".\/dist\/popup\/index.html" }, "options_ui": { "page": ".\/dist\/options\/index.html", "open_in_tab": true }, "background": { "service_worker": ".\/dist\/background\/index.mjs" }, "icons": { "16": ".\/assets\/icon-128.png", "32": ".\/assets\/icon-128.png", "128": ".\/assets\/icon-128.png", "512": ".\/assets\/icon-512.png" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/dist\/contentScripts\/index.global.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' http:\/\/localhost:3303; object-src 'self'" } } |