Gatry Night Mode
Turn off the Gatry lights!
Was ist Gatry Night Mode?
Gatry Night Mode ist eine Chrome-Erweiterung, die von https://moraisandre.com entwickelt wurde, und ihr Hauptmerkmal ist "Turn off the Gatry lights!".
Erweiterungsscreenshots
Gatry Night Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gatry Night Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
[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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | biikdmnllamcecdchhjgiiaakjnmaoma |
| Offizielle URL | https://chromewebstore.google.com/detail/gatry-night-mode/biikdmnllamcecdchhjgiiaakjnmaoma |
| Beschreibung | Turn off the Gatry lights! |
| Dateigröße | 3.12 MB |
| Installationsanzahl | 80 |
| Aktuelle Version | 1.3 |
| Letztes Update | 2021-12-01 |
| Veröffentlichungsdatum | 2018-09-04 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | https://moraisandre.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://moraisandre.com/ |
| Hilfeseite URL | http://moraisandre.com/night-night-mode/ |
| Unterstützte Sprachen | 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'"
} | |