Daydream Night Mode
Get rid of the sun-like screen and have a sweet Daydream...
What is Daydream Night Mode?
Daydream Night Mode is a Chrome extension developed by zankyostudio, and its main feature is "Get rid of the sun-like screen and have a sweet Daydream...".
Extension Screenshots
Download Daydream Night Mode Extension CRX File
Download Daydream Night Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Daydream Night Mode |
ID | kbbmooglpoifkklpckgabiahlicnhnmo |
Official URL | https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo |
Description | Get rid of the sun-like screen and have a sweet Daydream... |
File Size | 10.58 KB |
Installation Count | 1,004 |
Current Version | 0.1.6 |
Last Updated | 2020-11-20 |
Publish Date | 2019-06-01 |
Rating | 4.18/5 Total 11 Ratings |
Developer | zankyostudio |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |