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 |
官方網址 | 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 } ] } |