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とは何ですか?
Youtube Video Blockerはbmoses1124によって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
Youtube Video Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | cbkaomkmifobpbdkhhiincnigngeckfc |
公式URL | https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc |
説明 | Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed. |
ファイルサイズ | 6.02 KB |
インストール数 | 555 |
現在のバージョン | 0.1 |
最終更新日 | 2020-12-23 |
公開日 | 2020-12-23 |
評価 | 1.00/5 合計 3 レビュー |
開発者 | bmoses1124 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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 } |