MDN Dark Mode
Add a dark mode with different themes to the MDN Web Docs website. Open-Source.
MDN Dark Modeとは何ですか?
MDN Dark ModeはSantiago Galán Barloによって開発されたChromeの拡張機能で、その主な機能は「Add a dark mode with different themes to the MDN Web Docs website. Open-Source.」です。
拡張機能のスクリーンショット
MDN Dark Mode拡張機能のCRXファイルをダウンロード
MDN Dark Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Just click on the light-bulb to toggle dark mode ON or OFF. Currently available themes (based on famous VS Code themes): -Tokyo Night -One Dark Pro This extension won't track any kind of data and will be active at "developer.mozilla.org" tabs only. GitHub Repository: https://github.com/sgalanb/MDN-Dark-Mode
拡張機能の基本情報
名前 | MDN Dark Mode |
ID | jdaepiaaanhlmgoehjnnkhiagfkalhoc |
公式URL | https://chromewebstore.google.com/detail/mdn-dark-mode/jdaepiaaanhlmgoehjnnkhiagfkalhoc |
説明 | Add a dark mode with different themes to the MDN Web Docs website. Open-Source. |
ファイルサイズ | 69.08 KB |
インストール数 | 37 |
現在のバージョン | 1.0 |
最終更新日 | 2022-02-17 |
公開日 | 2022-02-08 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Santiago Galán Barlo |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MDN Dark Mode", "description": "Add a dark mode with different themes to the MDN Web Docs website. Open-Source.", "version": "1.0", "action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png", "256": "images\/icon256.png" } }, "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png", "256": "images\/icon256.png" }, "content_scripts": [ { "matches": [ "*:\/\/developer.mozilla.org\/*" ], "js": [ "script.js" ], "css": [ "extensionStyles.css" ] } ], "web_accessible_resources": [ { "resources": [ "darkStyles.css" ], "matches": [ "*:\/\/developer.mozilla.org\/*" ] }, { "resources": [ "\/images\/lightbulb-solid.svg" ], "matches": [ "*:\/\/developer.mozilla.org\/*" ] }, { "resources": [ "\/images\/lightbulb-regular.svg" ], "matches": [ "*:\/\/developer.mozilla.org\/*" ] } ] } |