notion-favicon-replacer
Replaces notion's dynamic favicons with their default favicon
What is notion-favicon-replacer?
notion-favicon-replacer is a Chrome extension developed by piyushgk1, and its main feature is "Replaces notion's dynamic favicons with their default favicon".
Extension Screenshots
Download notion-favicon-replacer Extension CRX File
Download notion-favicon-replacer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | notion-favicon-replacer |
ID | phpjnhdlhdmgebjijbbokdchfjnjenbg |
Official URL | https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg |
Description | Replaces notion's dynamic favicons with their default favicon |
File Size | 42.67 KB |
Installation Count | 27 |
Current Version | 1.5 |
Last Updated | 2021-09-09 |
Publish Date | 2021-09-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | piyushgk1 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/EpicPi/nation-favicon-replacer |
Supported Languages | 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" } ] } |