Daydream Night Mode
Get rid of the sun-like screen and have a sweet Daydream...
Co to jest Daydream Night Mode?
Daydream Night Mode to rozszerzenie Chrome opracowane przez zankyostudio, a jego główną funkcją jest „Get rid of the sun-like screen and have a sweet Daydream...”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Daydream Night Mode
Pobierz pliki rozszerzeń Daydream Night Mode 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
Get rid of the sun-like screen and take your sweet dream. Provide dark mode access to all websites with customizable contrast. You can also exclude any website from the extension if the website already provides dark mode.
Podstawowe informacje o rozszerzeniu
Nazwa | Daydream Night Mode |
ID | kbbmooglpoifkklpckgabiahlicnhnmo |
Oficjalny URL | https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo |
Opis | Get rid of the sun-like screen and have a sweet Daydream... |
Rozmiar pliku | 10.58 KB |
Liczba instalacji | 1,004 |
Aktualna Wersja | 0.1.6 |
Ostatnia Aktualizacja | 2020-11-20 |
Data Publikacji | 2019-06-01 |
Ocena | 4.18/5 Łącznie 11 Oceny |
Deweloper | zankyostudio |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Daydream Night Mode", "version": "0.1.6", "description": "Get rid of the sun-like screen and have a sweet Daydream...", "permissions": [ "activeTab", "tabs", "https:\/\/*\/*", "http:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*" ], "css": [ "content.css" ], "run_at": "document_start" } ], "browser_action": { "default_popup": "popup.html" }, "icons": { "128": "DaydreamIcon.png" } } |