Notion Favicon Fixer
TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…
Was ist Notion Favicon Fixer?
Notion Favicon Fixer ist eine Chrome-Erweiterung, die von leo.thorp.dev entwickelt wurde, und ihr Hauptmerkmal ist "TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…".
Erweiterungsscreenshots
Notion Favicon Fixer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Notion Favicon Fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's favicon changes to match whatever custom icon is on the page. But If you are switching around between many other open tabs, that makes it hard to find the Notion tab again. Once installed, this extension simply prevents the favicon from changing whenever you are viewing a Notion page, making open Notion tabs easier to find at a glance. Source code: https://github.com/leothorp/notion-favicon-fixer
Grundlegende Informationen zur Erweiterung
Name | Notion Favicon Fixer |
ID | dhgfaokfhhiondfknlnfojhfebgpfeai |
Offizielle URL | https://chromewebstore.google.com/detail/notion-favicon-fixer/dhgfaokfhhiondfknlnfojhfebgpfeai |
Beschreibung | TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's… |
Dateigröße | 5.87 KB |
Installationsanzahl | 475 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-10-06 |
Veröffentlichungsdatum | 2021-09-30 |
Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
Entwickler | leo.thorp.dev |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Notion Favicon Fixer", "version": "1.0", "icons": { "128": "icon.jpeg" }, "content_scripts": [ { "matches": [ "https:\/\/notion.so\/*", "https:\/\/www.notion.so\/*" ], "js": [ "content.js" ] } ] } |