Channel Blocker

Block irrelevant channels from the home page of youtube.

什么是Channel Blocker?

Channel Blocker是由xanderjakeq开发的Chrome扩展程序,该扩展的主要功能是“Block irrelevant channels from the home page of youtube.”。

扩展截图

screenshot

下载Channel Blocker扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
官方URL https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
简介 Block irrelevant channels from the home page of youtube.
文件大小 10.86 KB
安装次数 1,636
当前版本 1.1.1
更新时间 2022-06-21
上架时间 2019-09-04
评分 1.80/5 共5次评分
开发者 xanderjakeq
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/thelostcreatives/youtube_channel_blocker
支持的语言 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"
    }
}