Keyword Blocker
Web Extension to block unwanted videos and channels
Keyword Blockerとは何ですか?
Keyword BlockerはRik Harinkによって開発されたChromeの拡張機能で、その主な機能は「Web Extension to block unwanted videos and channels」です。
拡張機能のスクリーンショット
Keyword Blocker拡張機能のCRXファイルをダウンロード
Keyword Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | |
ID | pbgacppomjfpheddhifkdkklddnolnpg |
公式URL | https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg |
説明 | Web Extension to block unwanted videos and channels |
ファイルサイズ | 84.9 KB |
インストール数 | 9,000 |
現在のバージョン | 2.2.1 |
最終更新日 | 2020-02-04 |
公開日 | 2020-02-04 |
評価 | 3.25/5 合計 99 レビュー |
開発者 | Rik Harink |
支払い方法 | free |
拡張機能のウェブサイト | https://www.keywordblocker.nl |
ヘルプページのURL | https://github.com/Meidor/keywordblocker/issues |
対応言語 | 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\/*" ] } |