Gatry Night Mode
Turn off the Gatry lights!
O que é Gatry Night Mode?
Gatry Night Mode é uma extensão do Chrome desenvolvida por https://moraisandre.com, e sua principal característica é "Turn off the Gatry lights!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gatry Night Mode
Baixe arquivos de extensão Gatry 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
[PT-BR] Extensão feita para adicionar o modo noturno no site de promoções www.gatry.com [EN-US] Extension made to add night mode in Gatry's Website
Informações Básicas da Extensão
Nome | Gatry Night Mode |
ID | biikdmnllamcecdchhjgiiaakjnmaoma |
URL Oficial | https://chromewebstore.google.com/detail/gatry-night-mode/biikdmnllamcecdchhjgiiaakjnmaoma |
Descrição | Turn off the Gatry lights! |
Tamanho do Arquivo | 3.12 MB |
Contagem de Instalações | 80 |
Versão Atual | 1.3 |
Última Atualização | 2021-12-01 |
Data de Publicação | 2018-09-04 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | https://moraisandre.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://moraisandre.com/ |
URL da Página de Ajuda | http://moraisandre.com/night-night-mode/ |
Idiomas Suportados | pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gatry Night Mode", "description": "Turn off the Gatry lights!", "version": "1.3", "omnibox": { "keyword": "gatry" }, "icons": { "16": "icons\/gatry_icon16.png", "48": "icons\/gatry_icon48.png", "128": "icons\/gatry_icon128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/gatry_icon48.png", "default_title": "Gatry Night Mode" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/gatry.com\/*" ], "js": [ "js\/replace-css.js" ], "all_frames": true } ], "web_accessible_resources": [ "images\/*.png", "css\/night-mode.css" ], "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'" } |