night light
Inverted display mode for less eye strain in dark or dim lighting
night light क्या है?
night light Tyler Milford द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inverted display mode for less eye strain in dark or dim lighting"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में night light एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | https://github.com/conceptualspace/nightlight |
गोपनीयता नीति पृष्ठ URL | 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:\/\/*\/*" ] } |