note-dark
Dark mode for note.com
What is note-dark?
note-dark is a Chrome extension developed by sakuraya, and its main feature is "Dark mode for note.com".
Extension Screenshots
Download note-dark Extension CRX File
Download note-dark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
apply dark mode style for https://note.com The service provides no official dark mode, so this extension overwrite style to enable dark mode.
Extension Basic Information
Name | |
ID | ndjhheglhimmpjbgedbacgmloigpicng |
Official URL | https://chromewebstore.google.com/detail/note-dark/ndjhheglhimmpjbgedbacgmloigpicng |
Description | Dark mode for note.com |
File Size | 47.04 KB |
Installation Count | 26 |
Current Version | 1.0.13 |
Last Updated | 2020-12-30 |
Publish Date | 2020-05-24 |
Rating | 4.00/5 Total 1 Ratings |
Developer | sakuraya |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Blue-Pix/note-dark |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "note-dark", "version": "1.0.13", "manifest_version": 2, "description": "Dark mode for note.com", "permissions": [ "*:\/\/note.com\/*" ], "web_accessible_resources": [ "images\/*", "*.css" ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_title": "", "default_icon": { "19": "images\/19.png", "38": "images\/38.png" } }, "content_scripts": [ { "js": [ "jquery-3.4.1.slim.min.js", "content_script.js" ], "matches": [ "*:\/\/note.com\/*" ], "run_at": "document_end", "all_frames": true } ] } |