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 |
官方網址 | 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 |
電子郵箱 | [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" } } |