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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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\/*" ] } |