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…
Vad är Notion Favicon Fixer?
Notion Favicon Fixer är en Chrome-tillägg utvecklad av leo.thorp.dev, och dess huvudfunktion är "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…".
Tilläggsskärmbilder
Ladda ner Notion Favicon Fixer-förlängningens CRX-fil
Ladda ner Notion Favicon Fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Notion Favicon Fixer |
ID | dhgfaokfhhiondfknlnfojhfebgpfeai |
Officiell webbadress | https://chromewebstore.google.com/detail/notion-favicon-fixer/dhgfaokfhhiondfknlnfojhfebgpfeai |
Beskrivning | 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… |
Filstorlek | 5.87 KB |
Antal Installationer | 475 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-10-06 |
Publiceringsdatum | 2021-09-30 |
Betyg | 5.00/5 Totalt 7 Betyg |
Utvecklare | leo.thorp.dev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |