Daydream Night Mode
Get rid of the sun-like screen and have a sweet Daydream...
Daydream Night Modeคืออะไร?
Daydream Night Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zankyostudio และคุณลักษณะหลักของมันคือ "Get rid of the sun-like screen and have a sweet Daydream..."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Daydream Night Mode
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } } |