Start.gg Plus
Improvements to start.gg!
ما هو Start.gg Plus؟
Start.gg Plus هو إضافة Chrome تم تطويرها بواسطة cheesypotatodev، والميزة الرئيسية لها هي "Improvements to start.gg!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Start.gg Plus
قم بتنزيل ملفات الامتداد Start.gg Plus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
New features for the start.gg website! (recently renamed from smash.gg) - Dark theme! Handcrafted for every page on the site, settings synced to your Google account - Seed displays under all player names! - Shortcut buttons to view your matches in bracket And more to come! This extension is still in development, if you have ideas or feature requests please let me know at [email protected]
معلومات أساسية عن التمديد
الاسم | Start.gg Plus |
ID | kpleddnadkfgfedphhciepmdlfehkgod |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/startgg-plus/kpleddnadkfgfedphhciepmdlfehkgod |
الوصف | Improvements to start.gg! |
حجم الملف | 15.27 KB |
عدد التثبيتات | 961 |
النسخة الحالية | 1.4.1 |
آخر تحديث | 2022-08-17 |
تاريخ النشر | 2022-01-06 |
تقييم | 4.67/5 مجموع تقييمات 6 |
المطور | cheesypotatodev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Start.gg Plus", "description": "Improvements to start.gg!", "version": "1.4.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "webRequest", "storage", "scripting", "activeTab" ], "host_permissions": [ "https:\/\/www.start.gg\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } }, "icons": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.start.gg\/*" ], "js": [ "content-script.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "style.css" ], "matches": [ "https:\/\/www.start.gg\/*" ] } ] } |