CleanTube
YouTube with less clutter.
CleanTube란 무엇입니까?
CleanTube은(는) elliotwaite에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "YouTube with less clutter."입니다.
확장 프로그램 스크린샷
CleanTube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension hides the following YouTube elements: • The row of recommended videos that appear when a video is paused. • The wall of recommended videos that appear at the end of a video. • Channel watermark logos that appear in the bottom right of videos. • The "Watch later" and "Add to queue" icon buttons that appear over the top right of thumbnails when they are hovered over. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/cleantube Thanks. Enjoy!
확장 프로그램 기본 정보
이름 | CleanTube |
ID | kanfjhdeebkfgkbmnfknhejpadhlmiab |
공식 URL | https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab |
설명 | YouTube with less clutter. |
파일 크기 | 8.85 KB |
설치 횟수 | 1,633 |
현재 버전 | 0.4 |
최근 업데이트 | 2023-08-01 |
출시 날짜 | 2021-06-29 |
평점 | 3.80/5 총 5 개의 평점 |
개발자 | elliotwaite |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/elliotwaite/cleantube |
도움말 페이지 URL | https://github.com/elliotwaite/cleantube |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CleanTube", "version": "0.4", "description": "YouTube with less clutter.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Options", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*", "storage" ] } |