notion-favicon-replacer
Replaces notion's dynamic favicons with their default favicon
Wat is notion-favicon-replacer?
notion-favicon-replacer is een Chrome-extensie ontwikkeld door piyushgk1, en de belangrijkste functie is "Replaces notion's dynamic favicons with their default favicon".
Extensie Screenshots
Download het CRX-bestand van de extensie notion-favicon-replacer
Download notion-favicon-replacer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | notion-favicon-replacer |
ID | phpjnhdlhdmgebjijbbokdchfjnjenbg |
Officiële URL | https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg |
Beschrijving | Replaces notion's dynamic favicons with their default favicon |
Bestandsgrootte | 42.67 KB |
Aantal Installaties | 27 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2021-09-09 |
Publicatiedatum | 2021-09-08 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | piyushgk1 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/EpicPi/nation-favicon-replacer |
Ondersteunde Talen | 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" } ] } |