notion-favicon-replacer
Replaces notion's dynamic favicons with their default favicon
notion-favicon-replacer क्या है?
notion-favicon-replacer piyushgk1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces notion's dynamic favicons with their default favicon"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में notion-favicon-replacer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | 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" } ] } |