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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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';" } |