night light
Inverted display mode for less eye strain in dark or dim lighting
ما هو night light؟
night light هو إضافة Chrome تم تطويرها بواسطة Tyler Milford، والميزة الرئيسية لها هي "Inverted display mode for less eye strain in dark or dim lighting".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة night light
قم بتنزيل ملفات الامتداد night light بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Inverted display mode for better viewing with less eye strain in dark or dim lighting. The result is light text on a dark background instead of dark text on a light background, resulting in significantly less light output and less eye strain. Images are dimmed instead of inverted so they should still render nicely on most pages. Easily toggled on or off from the toolbar or main menu. Any sites that don't look good in night mode can easily be added to the whitelist.
معلومات أساسية عن التمديد
الاسم | |
ID | aionebabdognkieabomemdegmjedkked |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/night-light/aionebabdognkieabomemdegmjedkked |
الوصف | Inverted display mode for less eye strain in dark or dim lighting |
حجم الملف | 56.63 KB |
عدد التثبيتات | 2,300 |
النسخة الحالية | 1.14 |
آخر تحديث | 2018-12-04 |
تاريخ النشر | 2018-12-04 |
تقييم | 3.67/5 مجموع تقييمات 9 |
المطور | Tyler Milford |
نوع الدفع | free |
موقع الإضافة | https://github.com/conceptualspace/nightlight |
عنوان صفحة المساعدة | https://github.com/conceptualspace/nightlight |
عنوان صفحة سياسة الخصوصية | https://conceptualspace.net/privacy.md |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "night light", "description": "Inverted display mode for less eye strain in dark or dim lighting", "version": "1.14", "author": "[email protected]", "applications": { "gecko": { "id": "{d8a39bf7-9f46-45b7-9d77-7754cd13c0f8}" } }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "underscore-min.js", "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_title": "Toggle night mode" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script_start.js" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script_idle.js" ], "all_frames": true, "run_at": "document_idle" } ], "permissions": [ "storage", "contextMenus", "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |