Daydream Night Mode
Get rid of the sun-like screen and have a sweet Daydream...
什麼是Daydream Night Mode?
Daydream Night Mode是由zankyostudio開發的Chrome擴展程式,該擴展的主要功能是“Get rid of the sun-like screen and have a sweet Daydream...”。
擴展截圖
下載Daydream Night Mode擴展crx文件
下載Daydream Night Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Daydream Night Mode |
ID | kbbmooglpoifkklpckgabiahlicnhnmo |
官方網址 | https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo |
簡介 | Get rid of the sun-like screen and have a sweet Daydream... |
檔案大小 | 10.58 KB |
安裝次數 | 1,004 |
目前版本 | 0.1.6 |
更新時間 | 2020-11-20 |
上架時間 | 2019-06-01 |
評分 | 4.18/5 共 11 次評分 |
開發者 | zankyostudio |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } } |