Env Specific Favicon
Browser extension to customize favicons based on URL and title regex matching
ما هو Env Specific Favicon؟
Env Specific Favicon هو إضافة Chrome تم تطويرها بواسطة Elliot Lintz، والميزة الرئيسية لها هي "Browser extension to customize favicons based on URL and title regex matching".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Env Specific Favicon
قم بتنزيل ملفات الامتداد Env Specific Favicon بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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'" } } |