Gatry Night Mode
Turn off the Gatry lights!
Cos'è Gatry Night Mode?
Gatry Night Mode è un'estensione di Chrome sviluppata da https://moraisandre.com, e la sua funzione principale è "Turn off the Gatry lights!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gatry Night Mode
Scarica i file di estensione Gatry Night Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
[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
Informazioni di Base sull'Estensione
Nome | Gatry Night Mode |
ID | biikdmnllamcecdchhjgiiaakjnmaoma |
URL Ufficiale | https://chromewebstore.google.com/detail/gatry-night-mode/biikdmnllamcecdchhjgiiaakjnmaoma |
Descrizione | Turn off the Gatry lights! |
Dimensione del File | 3.12 MB |
Conteggio Installazioni | 80 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2021-12-01 |
Data di Pubblicazione | 2018-09-04 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | https://moraisandre.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://moraisandre.com/ |
URL della Pagina di Aiuto | http://moraisandre.com/night-night-mode/ |
Lingue Supportate | 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'" } |