Channel Blocker

Block irrelevant channels from the home page of youtube.

Apa itu Channel Blocker?

Channel Blocker adalah ekstensi Chrome yang dikembangkan oleh xanderjakeq, dan fitur utamanya adalah "Block irrelevant channels from the home page of youtube.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Channel Blocker

Unduh file ekstensi Channel Blocker 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

                        Stay productive while on Youtube by blocking distracting or irrelevant content from specific channels out of your homepage. You can't click on them if can't see them.                    

Informasi Dasar Ekstensi

Nama Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
URL Resmi https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
Deskripsi Block irrelevant channels from the home page of youtube.
Ukuran File 10.86 KB
Jumlah Instalasi 1,636
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2022-06-21
Tanggal Publikasi 2019-09-04
Penilaian 1.80/5 Total 5 Penilaian
Pengembang xanderjakeq
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/thelostcreatives/youtube_channel_blocker
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Channel Blocker",
    "author": "1o1.wtf [https:\/\/github.com\/thelostcreatives]",
    "description": "Block irrelevant channels from the home page of youtube.",
    "version": "1.1.1",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "\/icon.png"
        }
    },
    "permissions": [
        "notifications",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}