YouTube Blocker
Block unwanted YouTube channels.
什麼是YouTube Blocker?
YouTube Blocker是由Przemysław Tyczyński開發的Chrome擴展程式,該擴展的主要功能是“Block unwanted YouTube channels.”。
擴展截圖
下載YouTube Blocker擴展crx文件
下載YouTube Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. We know that the YouTube feed can be troublesome sometimes, to say the least. For that reason, we put forward a much needed solution to aforementioned problem. Hide unwanted content now.
擴展基本資訊
名稱 | |
ID | okgepglpkhgfhjonfceifgibiobjnodg |
官方網址 | https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg |
簡介 | Block unwanted YouTube channels. |
檔案大小 | 96.3 KB |
安裝次數 | 1,036 |
目前版本 | 1.0.0 |
更新時間 | 2020-04-21 |
上架時間 | 2020-04-21 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Przemysław Tyczyński |
付費類型 | free |
擴展官網 | https://youtube-blocker.tyczynski.dev |
說明頁面URL | https://youtube-blocker.tyczynski.dev |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Blocker", "description": "Block unwanted YouTube channels.", "version": "1.0.0", "browser_action": { "default_title": "YouTube Blocker", "default_popup": "popup.html", "default_icon": { "16": ".\/icons\/icon-16.png", "48": ".\/icons\/icon-48.png", "128": ".\/icons\/icon-128.png" } }, "icons": { "16": ".\/icons\/icon-16.png", "48": ".\/icons\/icon-48.png", "128": ".\/icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ] } ], "options_ui": { "page": "options.html", "browser_style": true, "chrome_style": true }, "permissions": [ "storage" ] } |