Simpli Youtube
Simplifies the Youtube viewing experience
Simpli Youtube란 무엇입니까?
Simpli Youtube은(는) tldralgos에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simplifies the Youtube viewing experience"입니다.
확장 프로그램 스크린샷
Simpli Youtube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Remove YouTube recomendations , comments, and more to simplify your Youtube experience. With all the control given to the user remove as little or as much as you want. This extension enables you to reduce distractions and take control of your time while browsing YouTube in the following ways: - Hide comments - Simplify the navigation drawer - Hide recommended video types - Hide video information on videos - Along with many more fully customizable features. The options are also heavily customizable, so you can create exactly the experience you want. So download and enjoy your simplified version of YouTube.
확장 프로그램 기본 정보
이름 | Simpli Youtube |
ID | obfdcjijgiooldbhohidceamnppmkail |
공식 URL | https://chromewebstore.google.com/detail/simpli-youtube/obfdcjijgiooldbhohidceamnppmkail |
설명 | Simplifies the Youtube viewing experience |
파일 크기 | 16.79 KB |
설치 횟수 | 72 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2021-01-07 |
출시 날짜 | 2021-01-07 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | tldralgos |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simpli Youtube", "description": "Simplifies the Youtube viewing experience", "version": "0.1.0", "permissions": [ "*:\/\/www.youtube.com\/*", "activeTab", "storage" ], "browser_action": { "default_popup": "mainpop.html", "default_title": "Youtube Rabbit Hole", "default_icon": { "16": "image\/logo_16.png", "32": "image\/logo_32.png", "48": "image\/logo_48.png", "128": "image\/logo_128.png" } }, "icons": { "16": "image\/logo_16.png", "32": "image\/logo_32.png", "48": "image\/logo_48.png", "128": "image\/logo_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "all_frames": true, "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |