Gatry Night Mode
Turn off the Gatry lights!
什么是Gatry Night Mode?
Gatry Night Mode是由https://moraisandre.com开发的Chrome扩展程序,该扩展的主要功能是“Turn off the Gatry lights!”。
扩展截图
下载Gatry Night Mode扩展crx文件
下载Gatry Night Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
[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
扩展基本信息
名称 | Gatry Night Mode |
ID | biikdmnllamcecdchhjgiiaakjnmaoma |
官方URL | https://chromewebstore.google.com/detail/gatry-night-mode/biikdmnllamcecdchhjgiiaakjnmaoma |
简介 | Turn off the Gatry lights! |
文件大小 | 3.12 MB |
安装次数 | 80 |
当前版本 | 1.3 |
更新时间 | 2021-12-01 |
上架时间 | 2018-09-04 |
评分 | 5.00/5 共4次评分 |
开发者 | https://moraisandre.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://moraisandre.com/ |
帮助页面URL | http://moraisandre.com/night-night-mode/ |
支持的语言 | 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'" } |