note-dark
Dark mode for note.com
Cos'è note-dark?
note-dark è un'estensione di Chrome sviluppata da sakuraya, e la sua funzione principale è "Dark mode for note.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione note-dark
Scarica i file di estensione note-dark in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
apply dark mode style for https://note.com The service provides no official dark mode, so this extension overwrite style to enable dark mode.
Informazioni di Base sull'Estensione
Nome | |
ID | ndjhheglhimmpjbgedbacgmloigpicng |
URL Ufficiale | https://chromewebstore.google.com/detail/note-dark/ndjhheglhimmpjbgedbacgmloigpicng |
Descrizione | Dark mode for note.com |
Dimensione del File | 47.04 KB |
Conteggio Installazioni | 26 |
Versione Corrente | 1.0.13 |
Ultimo Aggiornamento | 2020-12-30 |
Data di Pubblicazione | 2020-05-24 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | sakuraya |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Blue-Pix/note-dark |
Lingue Supportate | 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 } ] } |