YouTube Watched Filter
Filter videos you have already seen on the YouTube search results page!
YouTube Watched Filter란 무엇입니까?
YouTube Watched Filter은(는) MarkosApps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter videos you have already seen on the YouTube search results page!"입니다.
확장 프로그램 스크린샷
YouTube Watched Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Whenever a keyword is searched on YouTube, there is always a good chance that videos you have already clicked on pop up in the search results page. Would you prefer if you could easily choose to have those videos excluded from the results? YouTube Watched Filter logs the videos you clicked on from the results page so that next time you make a YouTube search, you won't have to see the same video results. You can choose whether you want this Chrome extension to filter the search page manually by pressing the filter button in the pop-up, or choose to filter them automatically specified in the options page. If you don't want the extension to log videos you click on from the results page, you can tick off enable in the pop-up. Additionally, you can also use the reversed button to do the opposite and filter out videos you haven't watched to only see those which you have watched.
확장 프로그램 기본 정보
이름 | |
ID | ljfallanjgncbpifopcppdepechonejh |
공식 URL | https://chromewebstore.google.com/detail/youtube-watched-filter/ljfallanjgncbpifopcppdepechonejh |
설명 | Filter videos you have already seen on the YouTube search results page! |
파일 크기 | 233 KB |
설치 횟수 | 508 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2022-06-16 |
출시 날짜 | 2021-01-22 |
평점 | 3.33/5 총 3 개의 평점 |
개발자 | MarkosApps |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/markorankovic/YouTube-Watched-Filter |
개인정보 보호 정책 페이지 URL | https://github.com/markorankovic/YouTube-Watched-Filter/blob/main/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Watched Filter", "version": "1.1.1", "description": "Filter videos you have already seen on the YouTube search results page!", "permissions": [ "storage", "tabs", "https:\/\/www.youtube.com\/*" ], "background": { "scripts": [ "links.js", "background.js" ], "persistent": false }, "browser_action": { "default_popup": ".\/popup.html" }, "options_page": ".\/options.html", "icons": { "16": ".\/LogoDesign16.png", "32": ".\/LogoDesign32.png", "48": ".\/LogoDesign48.png", "128": ".\/LogoDesign128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "links.js", "foreground.js" ], "all_frames": true } ], "manifest_version": 2 } |