Youtube Video Blocker

Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.

Apa itu Youtube Video Blocker?

Youtube Video Blocker adalah ekstensi Chrome yang dikembangkan oleh bmoses1124, dan fitur utamanya adalah "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Youtube Video Blocker

Unduh file ekstensi Youtube Video 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

                        An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.                    

Informasi Dasar Ekstensi

Nama Youtube Video Blocker Youtube Video Blocker
ID cbkaomkmifobpbdkhhiincnigngeckfc
URL Resmi https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc
Deskripsi Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Ukuran File 6.02 KB
Jumlah Instalasi 555
Versi Saat Ini 0.1
Terakhir Diperbarui 2020-12-23
Tanggal Publikasi 2020-12-23
Penilaian 1.00/5 Total 3 Penilaian
Pengembang bmoses1124
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Video Blocker",
    "version": "0.1",
    "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "block_youtube_vids.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "manifest_version": 2
}