Gatry Shades
Opções de temas para o Gatry.com
Gatry Shadesคืออะไร?
Gatry Shades เป็นส่วนขยายของ Chrome ที่พัฒนาโดย João Ribeiro และคุณลักษณะหลักของมันคือ "Opções de temas para o Gatry.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gatry Shades
ดาวน์โหลดไฟล์ส่วนขยาย 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!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gatry Shades |
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';" } |