YouTube Recommendations Filter
Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed
什麼是YouTube Recommendations Filter?
YouTube Recommendations Filter是由Gary Chiu開發的Chrome擴展程式,該擴展的主要功能是“Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed”。
擴展截圖
下載YouTube Recommendations Filter擴展crx文件
下載YouTube Recommendations Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Tired of always seeing videos you've already watched in your YouTube Recommendations feed? Or being recommended videos from 11 years ago? No matter how often you click "Not interested", YouTube still keeps recommending you those videos? Do you never watch YouTube Mixes? Then this extension is for you! It will filter these videos out of your Recommendations feed, leaving you with relevant, fresh content. You can also configure how much of a video you need to watch, or how old a video must be, before they get filtered out. Does NOT affect videos in Subscriptions, Search, Explore, Library, History, etc. You can also open the Console (Option + CMD + J on Mac) to see the videos that were hidden. Source: https://github.com/garygcchiu/YouTube-Recommendations-Filter
擴展基本資訊
名稱 | |
ID | pefndkngkakmmfnadcmnfnhemieaapbb |
官方網址 | https://chrome.google.com/webstore/detail/youtube-recommendations-f/pefndkngkakmmfnadcmnfnhemieaapbb |
簡介 | Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed |
檔案大小 | 23.32 KB |
安裝次數 | 87 |
目前版本 | 1.2.1 |
更新時間 | 2021-11-10 |
上架時間 | 2021-10-31 |
評分 | 2.33/5 共 3 次評分 |
開發者 | Gary Chiu |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://pastebin.com/ypV3HQNi |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Recommendations Filter", "description": "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed", "version": "1.2.1", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "action": { "default_popup": "interface.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |