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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة Night Owl
قم بتنزيل ملفات الامتداد Night Owl بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*" ] } |