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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | notion-favicon-replacer |
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" } ] } |