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ファイルをダウンロード
Automatic Dark Theme For Youtube™拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } } |