notion-favicon-replacer

Replaces notion's dynamic favicons with their default favicon

Apa itu notion-favicon-replacer?

notion-favicon-replacer adalah ekstensi Chrome yang dikembangkan oleh piyushgk1, dan fitur utamanya adalah "Replaces notion's dynamic favicons with their default favicon".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi notion-favicon-replacer

Unduh file ekstensi notion-favicon-replacer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama notion-favicon-replacer notion-favicon-replacer
ID phpjnhdlhdmgebjijbbokdchfjnjenbg
URL Resmi https://chromewebstore.google.com/detail/notion-favicon-replacer/phpjnhdlhdmgebjijbbokdchfjnjenbg
Deskripsi Replaces notion's dynamic favicons with their default favicon
Ukuran File 42.67 KB
Jumlah Instalasi 27
Versi Saat Ini 1.5
Terakhir Diperbarui 2021-09-09
Tanggal Publikasi 2021-09-08
Penilaian 5.00/5 Total 1 Penilaian
Pengembang piyushgk1
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/EpicPi/nation-favicon-replacer
Bahasa yang Didukung 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"
        }
    ]
}