notion-favicon-replacer

Replaces notion's dynamic favicons with their default favicon

Vad är notion-favicon-replacer?

notion-favicon-replacer är en Chrome-tillägg utvecklad av piyushgk1, och dess huvudfunktion är "Replaces notion's dynamic favicons with their default favicon".

Tilläggsskärmbilder

screenshot

Ladda ner notion-favicon-replacer-förlängningens CRX-fil

Ladda ner notion-favicon-replacer-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

                        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äggande Information om Tillägg

Namn notion-favicon-replacer notion-favicon-replacer
ID phpjnhdlhdmgebjijbbokdchfjnjenbg
Officiell webbadress https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg
Beskrivning Replaces notion's dynamic favicons with their default favicon
Filstorlek 42.67 KB
Antal Installationer 27
Aktuell Version 1.5
Senast Uppdaterad 2021-09-09
Publiceringsdatum 2021-09-08
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare piyushgk1
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/EpicPi/nation-favicon-replacer
Stödda Språk 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"
        }
    ]
}