Block Youtube Channels

Blocks Youtube channels and hides their videos.

什麼是Block Youtube Channels?

Block Youtube Channels是由blockchannel.ytb開發的Chrome擴展程式,該擴展的主要功能是“Blocks Youtube channels and hides their videos.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Block Youtube Channels擴展crx文件

下載Block Youtube Channels擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Allows you to hide videos uploaded by certain Youtube channels from appearing in you feed and other locations on Youtube. You can also hide videos based on some keywords.

Features
  * Hide videos by blocked channels
  * Hide videos whose title contain blocked keywords

NOTE: Channels are not blocked, only videos uploaded by them are hidden in Youtube.

Changelog
Version 2.00
  * Add keyword based blocking
  * Badge text
Version 1.4
  * Minor fixes
Version 1.3
  * Hide related/featured channels
  * Minor fixes
Version 1.2
  * Make it work with channels without user
  * Add links to blocked channels
  * Bug fix to hide videos in sidebar
Version 1.1
  * Add 'Block' button to videos page.                    

擴展基本資訊

名稱 Block Youtube Channels Block Youtube Channels
ID bdabpienmkhglpmbkmnlhhcikogkihim
官方網址 https://chrome.google.com/webstore/detail/block-youtube-channels/bdabpienmkhglpmbkmnlhhcikogkihim
簡介 Blocks Youtube channels and hides their videos.
檔案大小 53.88 KB
安裝次數 5,000
目前版本 2.2.1
更新時間 2017-07-09
上架時間 2017-07-09
評分 1.89/5 共 104 次評分
開發者 blockchannel.ytb
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/aniket134/blockchannel
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Block Youtube Channels",
    "description": "Blocks Youtube channels and hides their videos.",
    "version": "2.2.1",
    "browser_action": {
        "default_icon": {
            "32": "icon32.png"
        },
        "default_title": "Block Youtube Channels",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "webNavigation",
        "tabs",
        "declarativeContent",
        "activeTab",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "events.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "utils.js",
                "trie.js",
                "db.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}