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…

Cos'è Notion Favicon Fixer?

Notion Favicon Fixer è un'estensione di Chrome sviluppata da leo.thorp.dev, e la sua funzione principale è "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…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Notion Favicon Fixer

Scarica i file di estensione Notion Favicon Fixer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Notion Favicon Fixer Notion Favicon Fixer
ID dhgfaokfhhiondfknlnfojhfebgpfeai
URL Ufficiale https://chromewebstore.google.com/detail/notion-favicon-fixer/dhgfaokfhhiondfknlnfojhfebgpfeai
Descrizione 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…
Dimensione del File 5.87 KB
Conteggio Installazioni 475
Versione Corrente 1.0
Ultimo Aggiornamento 2021-10-06
Data di Pubblicazione 2021-09-30
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore leo.thorp.dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}