Youtube Channel Filter
Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!
什麼是Youtube Channel Filter?
Youtube Channel Filter是由IdentityofSine開發的Chrome擴展程式,該擴展的主要功能是“Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!”。
擴展截圖
下載Youtube Channel Filter擴展crx文件
下載Youtube Channel Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
# Youtube Channel Filter ## A unique way of productivity. ### What is Youtube Channel Filter Youtube Channel Filter is a chrome extension designed to make youtube a *more productive* platform. This is done by letting the user select channels they think would be productive to their lives. ### What does the filter do? The filter blocks out all recommendations from channels that are not approved(this can be reversed as well to hide channels you do not like) from the home page and video recommendations. However searching manually does not filter any videos. ### How Do I use it? To add a channel to the filter, navigate to the channel's page and you'll see a gray button that says ***Add Channel***. *(if you do not see this, refresh the page)* To remove a channel you can do two things. Either navigate to the chrome extension at the top right of your browser, click on it, and click on the channel you want to remove. Or you can navigate back to the channel's page and click the gray button that says ***Remove Channel*** *(Again if you do not see this, refresh the page)*
擴展基本資訊
名稱 | Youtube Channel Filter |
ID | fgoljeficnldfieaifdoplonkjbmfple |
官方網址 | https://chromewebstore.google.com/detail/youtube-channel-filter/fgoljeficnldfieaifdoplonkjbmfple |
簡介 | Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations! |
檔案大小 | 9.98 KB |
安裝次數 | 36 |
目前版本 | 3.0 |
更新時間 | 2022-09-19 |
上架時間 | 2022-09-19 |
評分 | 5.00/5 共 2 次評分 |
開發者 | IdentityofSine |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Channel Filter", "description": "Become more productive by only allowing channels you want to see! Both in the homepage and in recommendations!", "version": "3.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/www.youtube.com\/", "https:\/\/*.youtube.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ "ytcss.css" ], "js": [ "ytscript.js" ] } ], "action": { "default_popup": "popup.html" } } |