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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |