Channel Blocker
Block irrelevant channels from the home page of youtube.
Channel Blockerとは何ですか?
Channel Blockerはxanderjakeqによって開発されたChromeの拡張機能で、その主な機能は「Block irrelevant channels from the home page of youtube.」です。
拡張機能のスクリーンショット
Channel Blocker拡張機能のCRXファイルをダウンロード
Channel Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Stay productive while on Youtube by blocking distracting or irrelevant content from specific channels out of your homepage. You can't click on them if can't see them.
拡張機能の基本情報
名前 | Channel Blocker |
ID | bdcfpamdaoifippnlppibiejaagbihon |
公式URL | https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon |
説明 | Block irrelevant channels from the home page of youtube. |
ファイルサイズ | 10.86 KB |
インストール数 | 1,636 |
現在のバージョン | 1.1.1 |
最終更新日 | 2022-06-21 |
公開日 | 2019-09-04 |
評価 | 1.80/5 合計 5 レビュー |
開発者 | xanderjakeq |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/thelostcreatives/youtube_channel_blocker |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Channel Blocker", "author": "1o1.wtf [https:\/\/github.com\/thelostcreatives]", "description": "Block irrelevant channels from the home page of youtube.", "version": "1.1.1", "action": { "default_popup": "popup.html", "default_icon": { "48": "\/icon.png" } }, "permissions": [ "notifications", "storage", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" } } |