Dark Theme
Dark Theme for every websites - Dark mode web. Dark theme for night readers.
Co to jest Dark Theme?
Dark Theme to rozszerzenie Chrome opracowane przez gitfreext, a jego główną funkcją jest „Dark Theme for every websites - Dark mode web. Dark theme for night readers.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Dark Theme
Pobierz pliki rozszerzeń Dark Theme 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
Dark Theme makes easier to read at night. Dark mode for every website. Use dark theme and take care of your eyes. Click to icon of Dark Theme extension for dark reader - On Again click to icon for disable dark mode - Off Dark web for everybody. Enjoy the night!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | iofacgofnoffpinjjllfalnjcmmagpfk |
Oficjalny URL | https://chrome.google.com/webstore/detail/dark-theme/iofacgofnoffpinjjllfalnjcmmagpfk |
Opis | Dark Theme for every websites - Dark mode web. Dark theme for night readers. |
Rozmiar pliku | 268 KB |
Liczba instalacji | 2,000 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2020-09-05 |
Data Publikacji | 2020-09-05 |
Ocena | 4.11/5 Łącznie 9 Oceny |
Deweloper | gitfreext |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://www.smart-finder.net/privacy.html |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dark Theme", "short_name": "Dark Theme", "description": "Dark Theme for every websites - Dark mode web. Dark theme for night readers.", "version": "1.0.0", "manifest_version": 2, "browser_action": { "default_title": "Click to switch modes", "default_icon": "icons\/night256.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "icons": { "128": "icons\/night128.png", "64": "icons\/night64.png", "48": "icons\/night48.png", "16": "icons\/night16.png" }, "options_page": "options\/index.html", "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "match_about_blank": true, "css": [ "stylesheets\/dummy.css" ], "run_at": "document_start" } ] } |