Night Mode
Enjoy the web in the new night colors and protect your eyes
O que é Night Mode?
Night Mode é uma extensão do Chrome desenvolvida por SmartLink, e sua principal característica é "Enjoy the web in the new night colors and protect your eyes".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Night Mode
Baixe arquivos de extensão Night Mode 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
Night Mode Version 2.0.0 - Fixed style issues after Instagram latest update. - Adopted native DarkTheme from the Instagram app. Enjoy ! This extension was developed Independently by SmartLink and not affiliated with Instagram Inc.
Informações Básicas da Extensão
Nome | Night Mode |
ID | bkiiljdcpccihhoigelmohcfkehdnjej |
URL Oficial | https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej |
Descrição | Enjoy the web in the new night colors and protect your eyes |
Tamanho do Arquivo | 42.85 KB |
Contagem de Instalações | 152,483 |
Versão Atual | 2.0.0 |
Última Atualização | 2022-06-07 |
Data de Publicação | 2020-05-16 |
Classificação | 3.84/5 Total de 129 Avaliações |
Desenvolvedor | SmartLink |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Night Mode", "description": "Enjoy the web in the new night colors and protect your eyes", "version": "2.0.0", "author": "SmartLink", "browser_action": { "default_title": "Have a good day" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "activeTab", "storage" ], "background": { "page": "background.html", "persistent": true }, "icons": { "16": "imgs\/icon16.png", "48": "imgs\/icon48.png", "128": "imgs\/icon128.png" }, "web_accessible_resources": [ "nightmode.css" ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |