Youtube Video Blocker

Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.

Youtube Video Blocker là gì?

Youtube Video Blocker là một tiện ích mở rộng Chrome được phát triển bởi bmoses1124, và tính năng chính của nó là "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".

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

screenshot

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

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

                        An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.                    

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

Tên Youtube Video Blocker Youtube Video Blocker
ID cbkaomkmifobpbdkhhiincnigngeckfc
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc
Mô tả Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Kích Thước Tệp 6.02 KB
Số Lần Cài Đặt 555
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-12-23
Ngày Phát Hành 2020-12-23
Đánh Giá 1.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển bmoses1124
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",
    "name": "Youtube Video Blocker",
    "version": "0.1",
    "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "block_youtube_vids.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "manifest_version": 2
}