Material Design - Custom Dark Mode
Load custom css to set dark mode for some websites.
Material Design - Custom Dark Modeとは何ですか?
Material Design - Custom Dark Modeはarnoutpullenによって開発されたChromeの拡張機能で、その主な機能は「Load custom css to set dark mode for some websites.」です。
拡張機能のスクリーンショット
Material Design - Custom Dark Mode拡張機能のCRXファイルをダウンロード
Material Design - Custom Dark Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Custom dark mode for websites. Included websites: - tweakers.net - 9gag.com Todo: - google.com / google.nl - toggle darkmode for current site - add custom css to current page
拡張機能の基本情報
名前 | |
ID | gbenagmjagpjjpoeaigbmggjjmfieefn |
公式URL | https://chromewebstore.google.com/detail/material-design-custom-da/gbenagmjagpjjpoeaigbmggjjmfieefn |
説明 | Load custom css to set dark mode for some websites. |
ファイルサイズ | 1.24 MB |
インストール数 | 32 |
現在のバージョン | 1.0.1 |
最終更新日 | 2018-11-22 |
公開日 | 2018-11-22 |
評価 | 5.00/5 合計 6 レビュー |
開発者 | arnoutpullen |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/ArnoutPullen/MaterialDarkModeExtension |
対応言語 | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Material Design - Custom Dark Mode", "description": "Load custom css to set dark mode for some websites.", "version": "1.0.1", "author": "Arnout Pullen", "browser_action": { "default_icon": "assets\/material-icon-128-128.png", "default_title": "Dark Mode" }, "content_scripts": [ { "matches": [ "https:\/\/*.tweakers.net\/*" ], "css": [ "sites\/tweakers\/tweakers.css" ] }, { "matches": [ "https:\/\/9gag.com\/*" ], "css": [ "sites\/9gag\/9gag.css" ] } ], "icons": { "16": "assets\/material-icon-16-16.png", "32": "assets\/material-icon-32-32.png", "48": "assets\/material-icon-48-48.png", "128": "assets\/material-icon-128-128.png" } } |