Keyword Blocker

Web Extension to block unwanted videos and channels

Keyword Blocker là gì?

Keyword Blocker là một tiện ích mở rộng Chrome được phát triển bởi Rik Harink, và tính năng chính của nó là "Web Extension to block unwanted videos and channels".

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

screenshot
screenshot

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

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

                        This Chrome extension can block YouTube videos or channels from view based on keywords you can specify.
It features a very basic password protection and the block message is user-customizable.

Originally this was developed for a person who is easily scared and needed to be protected from certain YouTube searches. Because there was no easy way to do this I developed this extension.

The sourcecode is available on github at https://github.com/Meidor/keywordblocker                    

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

Tên Keyword Blocker Keyword Blocker
ID pbgacppomjfpheddhifkdkklddnolnpg
URL Chính Thức https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg
Mô tả Web Extension to block unwanted videos and channels
Kích Thước Tệp 84.9 KB
Số Lần Cài Đặt 9,000
Phiên Bản Hiện Tại 2.2.1
Cập Nhật Lần Cuối 2020-02-04
Ngày Phát Hành 2020-02-04
Đánh Giá 3.25/5 Tổng số 99 Đánh Giá
Nhà Phát Triển Rik Harink
Loại Thanh Toán free
Trang Web Mở Rộng https://www.keywordblocker.nl
URL Trang Trợ Giúp https://github.com/Meidor/keywordblocker/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Web Extension to block unwanted videos and channels",
    "version": "2.2.1",
    "name": "Keyword Blocker",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon-16.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Keyword Blocker",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "styles\/content_script.css"
            ],
            "js": [
                "content_script.bundle.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "*:\/\/www.youtube.com\/*"
    ]
}