Gatry Night Mode
Turn off the Gatry lights!
Co to jest Gatry Night Mode?
Gatry Night Mode to rozszerzenie Chrome opracowane przez https://moraisandre.com, a jego główną funkcją jest „Turn off the Gatry lights!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gatry Night Mode
Pobierz pliki rozszerzeń Gatry Night Mode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
[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
Podstawowe informacje o rozszerzeniu
Nazwa | Gatry Night Mode |
ID | biikdmnllamcecdchhjgiiaakjnmaoma |
Oficjalny URL | https://chromewebstore.google.com/detail/gatry-night-mode/biikdmnllamcecdchhjgiiaakjnmaoma |
Opis | Turn off the Gatry lights! |
Rozmiar pliku | 3.12 MB |
Liczba instalacji | 80 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2021-12-01 |
Data Publikacji | 2018-09-04 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | https://moraisandre.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://moraisandre.com/ |
Adres URL Strony Pomocy | http://moraisandre.com/night-night-mode/ |
Obsługiwane Języki | 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'" } |