notion-favicon-replacer

Replaces notion's dynamic favicons with their default favicon

Hvad er notion-favicon-replacer?

notion-favicon-replacer er en Chrome-udvidelse udviklet af piyushgk1, og dens hovedfunktion er "Replaces notion's dynamic favicons with their default favicon".

Udvidelsesskærmbilleder

screenshot

Download notion-favicon-replacer-udvidelses-CRX-fil

Download notion-favicon-replacer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn notion-favicon-replacer notion-favicon-replacer
ID phpjnhdlhdmgebjijbbokdchfjnjenbg
Officiel URL https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg
Beskrivelse Replaces notion's dynamic favicons with their default favicon
Filstørrelse 42.67 KB
Antal Installationer 27
Nuværende Version 1.5
Senest Opdateret 2021-09-09
Udgivelsesdato 2021-09-08
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler piyushgk1
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/EpicPi/nation-favicon-replacer
Understøttede Sprog 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"
        }
    ]
}