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
官方網址 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"
    }
}