Daydream Night Mode
Get rid of the sun-like screen and have a sweet Daydream...
Hvad er Daydream Night Mode?
Daydream Night Mode er en Chrome-udvidelse udviklet af zankyostudio, og dens hovedfunktion er "Get rid of the sun-like screen and have a sweet Daydream...".
Udvidelsesskærmbilleder
Download Daydream Night Mode-udvidelses-CRX-fil
Download Daydream Night Mode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Daydream Night Mode |
ID | kbbmooglpoifkklpckgabiahlicnhnmo |
Officiel URL | https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo |
Beskrivelse | Get rid of the sun-like screen and have a sweet Daydream... |
Filstørrelse | 10.58 KB |
Antal Installationer | 1,004 |
Nuværende Version | 0.1.6 |
Senest Opdateret | 2020-11-20 |
Udgivelsesdato | 2019-06-01 |
Bedømmelse | 4.18/5 Samlet 11 Bedømmelser |
Udvikler | zankyostudio |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |