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 |
公式URL | 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 |
Eメール | [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'" } } |