YouTube Blacklist

Hide specific channels or videos from YouTube search results

Apa itu YouTube Blacklist?

YouTube Blacklist adalah ekstensi Chrome yang dikembangkan oleh datakun, dan fitur utamanya adalah "Hide specific channels or videos from YouTube search results".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi YouTube Blacklist

Unduh file ekstensi YouTube Blacklist 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

                        Hide specific channels or videos from YouTube search results.

In YouTube search results, you can hide a channel or video from the search results by clicking the menu icon to the right of the channel or video you don't want to see and then "Hide this channel" or "Hide this video" menu.

Hidden channels or videos can be viewed and removed from the options page of the extension.

Change Log:
- 0.3.0
   - Options page improvements.
- 0.2.0
   - Channels or videos registered on the blacklist are hidden from the YouTube main page.                    

Informasi Dasar Ekstensi

Nama YouTube Blacklist YouTube Blacklist
ID fgapocjejiiecmooibicahfjngjbgaak
URL Resmi https://chromewebstore.google.com/detail/youtube-blacklist/fgapocjejiiecmooibicahfjngjbgaak
Deskripsi Hide specific channels or videos from YouTube search results
Ukuran File 293 KB
Jumlah Instalasi 222
Versi Saat Ini 0.3.0
Terakhir Diperbarui 2022-01-17
Tanggal Publikasi 2022-01-07
Pengembang datakun
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/datakun/YouTube-Blacklist/issues
Bahasa yang Didukung en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Blacklist",
    "description": "__MSG_description__",
    "version": "0.3.0",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/build\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "build\/injection.js"
            ],
            "css": [
                "build\/injection.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": ".\/popup.html",
        "default_icon": {
            "16": ".\/images\/ic_youtube_blacklist_16.png",
            "32": ".\/images\/ic_youtube_blacklist_32.png",
            "48": ".\/images\/ic_youtube_blacklist_48.png",
            "128": ".\/images\/ic_youtube_blacklist_128.png"
        }
    },
    "icons": {
        "16": ".\/images\/ic_youtube_blacklist_16.png",
        "32": ".\/images\/ic_youtube_blacklist_32.png",
        "48": ".\/images\/ic_youtube_blacklist_48.png",
        "128": ".\/images\/ic_youtube_blacklist_128.png"
    },
    "options_page": ".\/options.html",
    "default_locale": "en"
}