Block Youtube Channels

Blocks Youtube channels and hides their videos.

Block Youtube Channels là gì?

Block Youtube Channels là một tiện ích mở rộng Chrome được phát triển bởi blockchannel.ytb, và tính năng chính của nó là "Blocks Youtube channels and hides their videos.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Block Youtube Channels

Tải xuống các tệp mở rộng Block Youtube Channels dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Block Youtube Channels Block Youtube Channels
ID bdabpienmkhglpmbkmnlhhcikogkihim
URL Chính Thức https://chrome.google.com/webstore/detail/block-youtube-channels/bdabpienmkhglpmbkmnlhhcikogkihim
Mô tả Blocks Youtube channels and hides their videos.
Kích Thước Tệp 53.88 KB
Số Lần Cài Đặt 5,000
Phiên Bản Hiện Tại 2.2.1
Cập Nhật Lần Cuối 2017-07-09
Ngày Phát Hành 2017-07-09
Đánh Giá 1.89/5 Tổng số 104 Đánh Giá
Nhà Phát Triển blockchannel.ytb
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/aniket134/blockchannel
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}