Filter Youtube Channels

Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!

什么是Filter Youtube Channels?

Filter Youtube Channels是由QubitKernel开发的Chrome扩展程序,该扩展的主要功能是“Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!”。

扩展截图

下载Filter Youtube Channels扩展crx文件

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

扩展使用说明

                        Just feed in the name of the channel and it will remember to keep the videos out of your sight.

You can always un-filter or unblock the videos by just clicking "Remove" button in the plugin popup. Extremely easy!

This plugin does not track or store any kind of data, user or otherwise, at remote servers!

Remember to turn it on in incognito/private mode!                    

扩展基本信息

名称 Filter Youtube Channels Filter Youtube Channels
ID nchjfnobpfpkgmhagecolagcfemdkjfm
官方URL https://chrome.google.com/webstore/detail/filter-youtube-channels/nchjfnobpfpkgmhagecolagcfemdkjfm
简介 Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!
文件大小 27.94 KB
安装次数 113
当前版本 0.0.0.8
更新时间 2019-11-24
上架时间 2019-11-24
评分 2.33/5 共3次评分
开发者 QubitKernel
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Filter Youtube Channels",
    "version": "0.0.0.8",
    "description": "Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon_128.png"
    }
}