notion-favicon-replacer
Replaces notion's dynamic favicons with their default favicon
Was ist notion-favicon-replacer?
notion-favicon-replacer ist eine Chrome-Erweiterung, die von piyushgk1 entwickelt wurde, und ihr Hauptmerkmal ist "Replaces notion's dynamic favicons with their default favicon".
Erweiterungsscreenshots
notion-favicon-replacer-Erweiterungs-CRX-Datei herunterladen
Laden Sie notion-favicon-replacer-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
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | phpjnhdlhdmgebjijbbokdchfjnjenbg | 
| Offizielle URL | https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg | 
| Beschreibung | Replaces notion's dynamic favicons with their default favicon | 
| Dateigröße | 42.67 KB | 
| Installationsanzahl | 27 | 
| Aktuelle Version | 1.5 | 
| Letztes Update | 2021-09-09 | 
| Veröffentlichungsdatum | 2021-09-08 | 
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | piyushgk1 | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/EpicPi/nation-favicon-replacer | 
| Unterstützte Sprachen | 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"
        }
    ]
}  |  |