YouTube Video Hider
Hide youtube videos and thumbnails
YouTube Video Hider란 무엇입니까?
YouTube Video Hider은(는) Diogo Peres에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide youtube videos and thumbnails"입니다.
확장 프로그램 스크린샷
YouTube Video Hider 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Increase your productivity and don't get distracted by youtube videos while listening to music. This app has multiple options: * Turn all videos and thumbnails to black; * Minimize main video to show only the timeline. Minimize all the thumbnail's and zoom on hover. * Invert the color of all videos and thumbnails. This app is open-source and all the code is on: https://github.com/diogoperes/youtube-video-hider-app
확장 프로그램 기본 정보
이름 | |
ID | bppihnfgnlpklmhaojomngahgfpmpnbi |
공식 URL | https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi |
설명 | Hide youtube videos and thumbnails |
파일 크기 | 41.22 KB |
설치 횟수 | 123 |
현재 버전 | 0.0.0.4 |
최근 업데이트 | 2019-11-30 |
출시 날짜 | 2019-11-30 |
평점 | 4.78/5 총 9 개의 평점 |
개발자 | Diogo Peres |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.mrperes.com/youtube-video-hider/ |
도움말 페이지 URL | http://www.mrperes.com/youtube-video-hider/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Video Hider", "version": "0.0.0.4", "description": "Hide youtube videos and thumbnails", "browser_action": { "default_icon": ".\/img\/eye.png", "default_popup": ".\/popup.html" }, "web_accessible_resources": [ "css\/hide.css", "css\/minimize.css", "css\/invert.css" ], "author": "Diogo Peres", "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ ".\/js\/contentscript.js", ".\/js\/hideVideoScript.js", ".\/js\/showVideoScript.js" ], "run_at": "document_end" } ], "background": { "scripts": [ ".\/js\/background.js" ], "persistent": true } } |