YouTube Blocker

Block unwanted YouTube channels.

YouTube Blocker là gì?

YouTube Blocker là một tiện ích mở rộng Chrome được phát triển bởi Przemysław Tyczyński, và tính năng chính của nó là "Block unwanted YouTube channels.".

Ả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 YouTube Blocker

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

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

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

Tên YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
Mô tả Block unwanted YouTube channels.
Kích Thước Tệp 96.3 KB
Số Lần Cài Đặt 1,036
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-04-21
Ngày Phát Hành 2020-04-21
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Przemysław Tyczyński
Loại Thanh Toán free
Trang Web Mở Rộng https://youtube-blocker.tyczynski.dev
URL Trang Trợ Giúp https://youtube-blocker.tyczynski.dev
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}