note-dark
Dark mode for note.com
Co to jest note-dark?
note-dark to rozszerzenie Chrome opracowane przez sakuraya, a jego główną funkcją jest „Dark mode for note.com”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia note-dark
Pobierz pliki rozszerzeń note-dark w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
apply dark mode style for https://note.com The service provides no official dark mode, so this extension overwrite style to enable dark mode.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ndjhheglhimmpjbgedbacgmloigpicng |
Oficjalny URL | https://chromewebstore.google.com/detail/note-dark/ndjhheglhimmpjbgedbacgmloigpicng |
Opis | Dark mode for note.com |
Rozmiar pliku | 47.04 KB |
Liczba instalacji | 26 |
Aktualna Wersja | 1.0.13 |
Ostatnia Aktualizacja | 2020-12-30 |
Data Publikacji | 2020-05-24 |
Ocena | 4.00/5 Łącznie 1 Oceny |
Deweloper | sakuraya |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Blue-Pix/note-dark |
Obsługiwane Języki | 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 } ] } |