Automatic Dark Theme For Youtube™
Automatically switch Youtube to its built-in dark theme.
Automatic Dark Theme For Youtube™란 무엇입니까?
Automatic Dark Theme For Youtube™은(는) vvision에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically switch Youtube to its built-in dark theme."입니다.
확장 프로그램 스크린샷
Automatic Dark Theme For Youtube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension tries to switch to the built-in dark theme during ten secondes after page load. In case of slow loading, it's possible that the switch would not occured. Therefore another try will during next page load or at current page refresh.
확장 프로그램 기본 정보
이름 | Automatic Dark Theme For Youtube™ |
ID | mmhgglciecmmcekdmjnlmdobnephpbdf |
공식 URL | https://chromewebstore.google.com/detail/automatic-dark-theme-for/mmhgglciecmmcekdmjnlmdobnephpbdf |
설명 | Automatically switch Youtube to its built-in dark theme. |
파일 크기 | 32.76 KB |
설치 횟수 | 419 |
현재 버전 | 3.1.0 |
최근 업데이트 | 2020-12-07 |
출시 날짜 | 2020-04-28 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | vvision |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/vvision/yt-auto-dark |
지원되는 언어 | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "short_name": "YtAutoDark", "version": "3.1.0", "author": "Victor Voisin", "description": "__MSG_extensionDescription__", "homepage_url": "https:\/\/github.com\/vvision\/yt-auto-dark", "default_locale": "en", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "96": "icons\/icon_96.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "modules\/external\/browser-polyfill.min.js", "core\/logger.js", "core\/onInstalled.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "modules\/external\/browser-polyfill.min.js", "core\/logger.js", "ytAutoDark.js" ] } ], "options_ui": { "page": "pages\/options\/options.html" }, "permissions": [ "storage" ], "applications": { "gecko": { "id": "[email protected]" } }, "browser_specific_settings": { "gecko": { "id": "[email protected]", "strict_min_version": "60.0" } } } |