notion-favicon-replacer
Replaces notion's dynamic favicons with their default favicon
ما هو notion-favicon-replacer؟
notion-favicon-replacer هو إضافة Chrome تم تطويرها بواسطة piyushgk1، والميزة الرئيسية لها هي "Replaces notion's dynamic favicons with their default favicon".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة notion-favicon-replacer
قم بتنزيل ملفات الامتداد notion-favicon-replacer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Notion dynamically changes favicons based on the page's icon. This makes it frustrating to determine at a glance which tab is the notion tab. This extension resets favicons on all notion tabs to the default favicon. معلومات أساسية عن التمديد
| الاسم | |
| ID | phpjnhdlhdmgebjijbbokdchfjnjenbg |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg |
| الوصف | Replaces notion's dynamic favicons with their default favicon |
| حجم الملف | 42.67 KB |
| عدد التثبيتات | 27 |
| النسخة الحالية | 1.5 |
| آخر تحديث | 2021-09-09 |
| تاريخ النشر | 2021-09-08 |
| تقييم | 5.00/5 مجموع تقييمات 1 |
| المطور | piyushgk1 |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/EpicPi/nation-favicon-replacer |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "notion-favicon-replacer",
"description": "Replaces notion's dynamic favicons with their default favicon",
"version": "1.5",
"icons": {
"16": "ext_16.png",
"48": "ext_48.png",
"128": "ext_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.notion.so\/*"
],
"js": [
"jquery-3.6.0.min.js",
"replace.js"
],
"run_at": "document_end"
}
]
} | |