Channel Blocker

Allows you to block YouTube™ videos and comments by blacklisting users and/or by using regular expressions.

Channel Blocker là gì?

Channel Blocker là một tiện ích mở rộng Chrome được phát triển bởi timemachine.development, và tính năng chính của nó là "Allows you to block YouTube™ videos and comments by blacklisting users and/or by using regular expressions.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Channel Blocker 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

                        About this extension

Our Add-on enables the function of blocking anything you'd like. Block separate videos, users or whole channels with only one click! Naturally, the add-on supports regular expressions to ensure you the best customisation possible. And another thing: no user information is collected.

Do you like what we do? Do you want to support us and our work? A subscription on Patreon would help a lot at developing this tool as well as realising our future projects.
Do you want to support us even more? Please donate and buy us a drink to stay hydrated (Hydration is important, though!)..

New features:
- revised the implementation which is responsible for hiding elements on YouTube
- changed add-on icon
- removed 3-dot-menu feature
- removed block-main-video-on-video-page feature                    

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

Tên Channel Blocker Channel Blocker
ID nfkmalbckemmklibjddenhnofgnfcdfp
URL Chính Thức https://chromewebstore.google.com/detail/channel-blocker/nfkmalbckemmklibjddenhnofgnfcdfp
Mô tả Allows you to block YouTube™ videos and comments by blacklisting users and/or by using regular expressions.
Kích Thước Tệp 134 KB
Số Lần Cài Đặt 112,281
Phiên Bản Hiện Tại 2.2.4
Cập Nhật Lần Cuối 2022-08-11
Ngày Phát Hành 2020-04-27
Đánh Giá 3.84/5 Tổng số 497 Đánh Giá
Nhà Phát Triển timemachine.development
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Channel Blocker",
    "version": "2.2.4",
    "description": "Allows you to block YouTube\u2122 videos and comments by blacklisting users and\/or by using regular expressions.",
    "icons": {
        "16": "\/images\/CB_icon_16.png",
        "32": "\/images\/CB_icon_32.png",
        "48": "\/images\/CB_icon_48.png",
        "96": "\/images\/CB_icon_96.png",
        "128": "\/images\/CB_icon_128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs",
        "contextMenus",
        "*:\/\/www.youtube.com\/*"
    ],
    "browser_action": {
        "default_title": "Channel Blocker (Configuration)",
        "default_icon": {
            "16": "\/images\/CB_icon_16.png",
            "32": "\/images\/CB_icon_32.png",
            "48": "\/images\/CB_icon_48.png",
            "96": "\/images\/CB_icon_96.png",
            "128": "\/images\/CB_icon_128.png"
        }
    },
    "options_ui": {
        "page": "\/ui\/config\/html\/config.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "shared\/browser-polyfill.min.js",
            "shared\/shared.js",
            "background\/HashSet.js",
            "background\/browser_action.js",
            "background\/url_update.js",
            "background\/storage\/content_ui.js",
            "background\/storage\/settings_ui.js",
            "background\/storage\/FilterStorageManager.js",
            "background\/storage\/filter.js",
            "background\/savefile_export.js",
            "background\/bug_report.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "shared\/browser-polyfill.min.js",
                "shared\/jquery-3.5.1.min.js",
                "shared\/shared.js",
                "content\/libs\/mutation-summary.js",
                "content\/libs\/is_blocked_lib.js",
                "content\/libs\/block_button_lib.js",
                "content\/libs\/display_lib.js",
                "content\/config.js",
                "content\/observer_components\/shared\/shared.js",
                "content\/observer_components\/home\/home_video.js",
                "content\/observer_components\/home\/post.js",
                "content\/observer_components\/home\/video_in_container.js",
                "content\/observer_components\/home\/video_in_section.js",
                "content\/observer_components\/home\/home_movie.js",
                "content\/observer_components\/trending\/expanded_video.js",
                "content\/observer_components\/trending\/horizontal_video.js",
                "content\/observer_components\/trending\/video_container.js",
                "content\/observer_components\/search\/search_video.js",
                "content\/observer_components\/search\/vertical_video.js",
                "content\/observer_components\/search\/playlist.js",
                "content\/observer_components\/search\/channel.js",
                "content\/observer_components\/search\/search_movie.js",
                "content\/observer_components\/video\/comment.js",
                "content\/observer_components\/video\/main_video.js",
                "content\/observer_components\/video\/next.js",
                "content\/observer_components\/video\/videowall_video.js",
                "content\/observer_components\/video\/video_movie.js",
                "content\/Observer.js",
                "content\/observers_creator.js",
                "content\/controller.js"
            ]
        }
    ]
}