YouTube Blacklist

Hide specific channels or videos from YouTube search results

什么是YouTube Blacklist?

YouTube Blacklist是由datakun开发的Chrome扩展程序,该扩展的主要功能是“Hide specific channels or videos from YouTube search results”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载YouTube Blacklist扩展crx文件

下载YouTube Blacklist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 YouTube Blacklist YouTube Blacklist
ID fgapocjejiiecmooibicahfjngjbgaak
官方URL https://chromewebstore.google.com/detail/youtube-blacklist/fgapocjejiiecmooibicahfjngjbgaak
简介 Hide specific channels or videos from YouTube search results
文件大小 293 KB
安装次数 222
当前版本 0.3.0
更新时间 2022-01-17
上架时间 2022-01-07
开发者 datakun
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/datakun/YouTube-Blacklist/issues
支持的语言 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"
}