Night Owl
An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
Night Owl क्या है?
Night Owl Jishaal Kalyan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Night Owl एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. Is it a dark and rainy day? You can turn off the automatic scheduler in the Settings to enable night mode manually again. The following sites are currently supported - twitter.com - reddit.com ***Coming Soon*** - Automatic toggling night mode when the user is idle - More sites that support night mode ======= Owl logo from https://www.emojione.com/
एक्सटेंशन की मूल जानकारी
नाम | |
ID | iagomahcookmbnimmomjcmiaimmhompf |
आधिकारिक URL | https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf |
विवरण | An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. |
फ़ाइल का आकार | 554 KB |
स्थापना संख्या | 203 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2022-10-16 |
प्रकाशन तिथि | 2019-09-07 |
डेवलपर | Jishaal Kalyan |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jishaal/night-owl-extension |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "Night Owl", "name": "Night Owl", "version": "1.1.0", "manifest_version": 2, "description": "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.", "browser_action": { "default_popup": "index.html", "default_title": "Night Owl" }, "background": { "scripts": [ "browser-polyfill.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.reddit.com\/*" ], "js": [ "browser-polyfill.min.js", "content.js" ] } ], "icons": { "128": "icon_128x128.png", "64": "icon_64x64.png", "32": "icon_32x32.png" }, "permissions": [ "tabs", "activeTab", "cookies", "geolocation", "storage", "*:\/\/*.twitter.com\/*", "*:\/\/*.reddit.com\/*" ] } |