Env Specific Favicon
Browser extension to customize favicons based on URL and title regex matching
Env Specific Favicon là gì?
Env Specific Favicon là một tiện ích mở rộng Chrome được phát triển bởi Elliot Lintz, và tính năng chính của nó là "Browser extension to customize favicons based on URL and title regex matching".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Env Specific Favicon
Tải xuống các tệp mở rộng Env Specific Favicon 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Env Specific Favicon |
ID | licfgcgpjgbbankegljcpbklabdnmopl |
URL Chính Thức | https://chromewebstore.google.com/detail/env-specific-favicon/licfgcgpjgbbankegljcpbklabdnmopl |
Mô tả | Browser extension to customize favicons based on URL and title regex matching |
Kích Thước Tệp | 240 KB |
Số Lần Cài Đặt | 129 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2024-02-06 |
Ngày Phát Hành | 2022-04-10 |
Đánh Giá | 4.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Elliot Lintz |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Elliot67/env-specific-favicon |
URL Trang Trợ Giúp | https://github.com/Elliot67/env-specific-favicon/issues |
Ngôn Ngữ Được Hỗ Trợ | 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'" } } |