note-dark
Dark mode for note.com
什么是note-dark?
note-dark是由sakuraya开发的Chrome扩展程序,该扩展的主要功能是“Dark mode for note.com”。
扩展截图
下载note-dark扩展crx文件
下载note-dark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
apply dark mode style for https://note.com The service provides no official dark mode, so this extension overwrite style to enable dark mode.
扩展基本信息
名称 | |
ID | ndjhheglhimmpjbgedbacgmloigpicng |
官方URL | https://chromewebstore.google.com/detail/note-dark/ndjhheglhimmpjbgedbacgmloigpicng |
简介 | Dark mode for note.com |
文件大小 | 47.04 KB |
安装次数 | 26 |
当前版本 | 1.0.13 |
更新时间 | 2020-12-30 |
上架时间 | 2020-05-24 |
评分 | 4.00/5 共1次评分 |
开发者 | sakuraya |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Blue-Pix/note-dark |
支持的语言 | 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 } ] } |