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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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'" } } |