Gatry Shades
Opções de temas para o Gatry.com
什么是Gatry Shades?
Gatry Shades是由João Ribeiro开发的Chrome扩展程序,该扩展的主要功能是“Opções de temas para o Gatry.com”。
扩展截图
下载Gatry Shades扩展crx文件
下载Gatry Shades扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A extensão permite aplicar temas no site Gatry.com, especialmente temas escuros e algumas funcionalidades para reduzir a luminosidade de componentes e imagens!
Também disponível para Firefox, Edge e Opera! 扩展基本信息
| 名称 | |
| ID | nmflikdijdboedbhmohgcaakjkniignj |
| 官方URL | https://chromewebstore.google.com/detail/gatry-shades/nmflikdijdboedbhmohgcaakjkniignj |
| 简介 | Opções de temas para o Gatry.com |
| 文件大小 | 158 KB |
| 安装次数 | 33 |
| 当前版本 | 1.1.6 |
| 更新时间 | 2023-09-08 |
| 上架时间 | 2021-12-26 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | João Ribeiro |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/jocafamaka/gatry-shades |
| 帮助页面URL | https://github.com/jocafamaka/gatry-shades |
| 支持的语言 | pt-BR |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Gatry Shades",
"description": "Op\u00e7\u00f5es de temas para o Gatry.com",
"version": "1.1.6",
"content_scripts": [
{
"run_at": "document_start",
"all_frames": true,
"js": [
"js\/listener.js"
],
"css": [
"css\/main.css"
],
"matches": [
"*:\/\/gatry.com\/*"
]
}
],
"background": {
"persistent": false,
"scripts": [
"js\/background.js"
]
},
"browser_action": {
"default_icon": "icons\/icone32.png",
"default_popup": "menu.html",
"default_title": "Gatry Shades"
},
"icons": {
"128": "icons\/icone128.png",
"64": "icons\/icone64.png",
"32": "icons\/icone32.png",
"16": "icons\/icone16.png"
},
"omnibox": {
"keyword": "gatry"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"images\/*.png",
"css\/*.css"
],
"content_security_policy": "script-src 'self'; object-src 'self';"
} | |