YouTube Customizer
Customize your YouTube.
YouTube Customizer란 무엇입니까?
YouTube Customizer은(는) Nibito에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize your YouTube."입니다.
확장 프로그램 스크린샷
YouTube Customizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Improve your video watching experience. Hide unnecessary elements on the page or within the player with this easy-to-use extension. With this extension now you can: - hide 'Share', 'Info', 'Watch more' buttons, - hide 'More videos' panel - make the title smaller, - enable full-screen mode on pages without this option. On YouTube page you can: - hide up next panel and comments, - disable autoplay. More options in the future.
확장 프로그램 기본 정보
이름 | YouTube Customizer |
ID | jjdpifbhmmdnkmndomeokjgnilcimoaj |
공식 URL | https://chromewebstore.google.com/detail/youtube-customizer/jjdpifbhmmdnkmndomeokjgnilcimoaj |
설명 | Customize your YouTube. |
파일 크기 | 41.9 KB |
설치 횟수 | 585 |
현재 버전 | 1.4.1 |
최근 업데이트 | 2023-10-09 |
출시 날짜 | 2021-06-08 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | Nibito |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://nibito.com/?ref=youtube_customizer |
도움말 페이지 URL | https://nibito.com |
개인정보 보호 정책 페이지 URL | https://nibito.com/privacy-policy?ref=chrome-store |
지원되는 언어 | en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Customizer", "version": "1.4.1", "description": "__MSG_extensionDescription__", "default_locale": "en", "icons": { "16": "resources\/icons\/icon_16.png", "18": "resources\/icons\/icon_18.png", "19": "resources\/icons\/icon_19.png", "32": "resources\/icons\/icon_32.png", "48": "resources\/icons\/icon_48.png", "64": "resources\/icons\/icon_64.png", "128": "resources\/icons\/icon_128.png" }, "browser_action": { "default_icon": { "16": "resources\/icons\/icon_16.png", "18": "resources\/icons\/icon_18.png", "19": "resources\/icons\/icon_19.png", "32": "resources\/icons\/icon_32.png", "48": "resources\/icons\/icon_48.png" }, "default_title": "YouTube Customizer", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "all_frames": true, "js": [ "shared.js", "inject.js" ], "css": [ "resources\/skin\/injectStyle.css" ] } ], "permissions": [ "storage" ] } |