Seen That! For YouTube
Hides YouTube's recommended videos if you have already watched them!
Seen That! For YouTube란 무엇입니까?
Seen That! For YouTube은(는) Arun Sundaram에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides YouTube's recommended videos if you have already watched them!"입니다.
확장 프로그램 스크린샷
Seen That! For YouTube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Are you sick of seeing recommendations for YouTube videos you have already watched or started, but decided not to finish? SeenThat! uses YouTube's watch history to hide suggestions for videos that you've already seen. This extension REQUIRES you to be signed into YouTube and to have watch history unpaused. You can toggle this at https://www.youtube.com/feed/history. You can customize hiding from the following pages with one simple menu: - Home Page - Watch Page - Subscriptions - Channel Videos - Search Results You can further filter the videos by only hiding videos that you've watched past a certain percentage or by hiding playlist recommendations. SeenThat! does not collect any user data, but does need your YouTube account's watch history to be active to work. You will know that this is the case if you can see the red bar at the bottom of thumbnails linking to videos you've already started to watch.
확장 프로그램 기본 정보
이름 | Seen That! For YouTube |
ID | nlhibcelmcakfgbdmeinlojopoadhnfe |
공식 URL | https://chromewebstore.google.com/detail/seen-that-for-youtube/nlhibcelmcakfgbdmeinlojopoadhnfe |
설명 | Hides YouTube's recommended videos if you have already watched them! |
파일 크기 | 40.18 KB |
설치 횟수 | 130 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-04-20 |
출시 날짜 | 2021-04-20 |
평점 | 3.75/5 총 4 개의 평점 |
개발자 | Arun Sundaram |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Seen That! For YouTube", "version": "1.0", "description": "Hides YouTube's recommended videos if you have already watched them!", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/seen_that16.png", "32": "images\/seen_that32.png", "48": "images\/seen_that48.png", "128": "images\/seen_that128.png" } }, "icons": { "16": "images\/seen_that16.png", "32": "images\/seen_that32.png", "48": "images\/seen_that48.png", "128": "images\/seen_that128.png" }, "manifest_version": 2 } |