SeenIt
SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.
SeenIt란 무엇입니까?
SeenIt은(는) Imran Thobani에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily."입니다.
확장 프로그램 스크린샷
SeenIt 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Labels (or hides, if you adjust the options) the thumbnails of videos you've watched. Works for: * Search results * Recommendations * Sidebar with similar videos to the video now playing If you like this extension, please rate and/or leave a review here! All feedback is useful.
확장 프로그램 기본 정보
이름 | SeenIt |
ID | micbdilkepmleglkjkcgeppifphhpnfl |
공식 URL | https://chromewebstore.google.com/detail/seenit/micbdilkepmleglkjkcgeppifphhpnfl |
설명 | SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily. |
파일 크기 | 28.08 KB |
설치 횟수 | 190 |
현재 버전 | 1.3 |
최근 업데이트 | 2013-11-17 |
출시 날짜 | 2013-11-17 |
평점 | 2.71/5 총 7 개의 평점 |
개발자 | Imran Thobani |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SeenIt", "description": "SeenIt labels or hides the YouTube videos you've already watched. Now you can discover new content more easily.", "version": "1.3", "author": "Imran Thobani", "icons": { "128": "seenit.png" }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "browser_action": { "default_icon": "seenit.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "main.js" ], "run_at": "document_end", "all_frames": true } ], "oauth2": { "client_id": "1058256324296-ve67pga7n4anuc1d4c4s8uhlq1glkqhm.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/youtube.readonly" ] }, "permissions": [ "identity" ], "background": { "page": "background.html" } } |