Night Owl
An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
O que é Night Owl?
Night Owl é uma extensão do Chrome desenvolvida por Jishaal Kalyan, e sua principal característica é "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Night Owl
Baixe arquivos de extensão Night Owl no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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/
Informações Básicas da Extensão
Nome | |
ID | iagomahcookmbnimmomjcmiaimmhompf |
URL Oficial | https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf |
Descrição | An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. |
Tamanho do Arquivo | 554 KB |
Contagem de Instalações | 203 |
Versão Atual | 1.1.0 |
Última Atualização | 2022-10-16 |
Data de Publicação | 2019-09-07 |
Desenvolvedor | Jishaal Kalyan |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jishaal/night-owl-extension |
Idiomas Suportados | 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\/*" ] } |