notion-favicon-replacer
Replaces notion's dynamic favicons with their default favicon
Co to jest notion-favicon-replacer?
notion-favicon-replacer to rozszerzenie Chrome opracowane przez piyushgk1, a jego główną funkcją jest „Replaces notion's dynamic favicons with their default favicon”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia notion-favicon-replacer
Pobierz pliki rozszerzeń notion-favicon-replacer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | notion-favicon-replacer |
ID | phpjnhdlhdmgebjijbbokdchfjnjenbg |
Oficjalny URL | https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg |
Opis | Replaces notion's dynamic favicons with their default favicon |
Rozmiar pliku | 42.67 KB |
Liczba instalacji | 27 |
Aktualna Wersja | 1.5 |
Ostatnia Aktualizacja | 2021-09-09 |
Data Publikacji | 2021-09-08 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | piyushgk1 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/EpicPi/nation-favicon-replacer |
Obsługiwane Języki | 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" } ] } |