Geoguessr Helper
A simple extension to help you play Geoguessr better.
ما هو Geoguessr Helper؟
Geoguessr Helper هو إضافة Chrome تم تطويرها بواسطة SkiingIsFun123، والميزة الرئيسية لها هي "A simple extension to help you play Geoguessr better.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Geoguessr Helper
قم بتنزيل ملفات الامتداد Geoguessr Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A simple extension to help you play Geoguessr better. To use this extension, download it, open your round of Geoguessr, refresh the page, and then open the extension. From there, you can make a guess based on the information provided. Source code can be found here: https://github.com/SkiingIsFun123/Geoguessr-Helper
معلومات أساسية عن التمديد
الاسم | Geoguessr Helper |
ID | khchhghekameiogaofnhchgadjaommli |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/geoguessr-helper/khchhghekameiogaofnhchgadjaommli |
الوصف | A simple extension to help you play Geoguessr better. |
حجم الملف | 11.73 KB |
عدد التثبيتات | 831 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2022-09-21 |
تاريخ النشر | 2022-09-21 |
تقييم | 1.00/5 مجموع تقييمات 2 |
المطور | SkiingIsFun123 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Geoguessr Helper", "version": "1.0.0", "description": "A simple extension to help you play Geoguessr better.", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/www.geoguessr.com\/game\/*" ], "js": [ "content_script.js" ], "all_frames": true } ], "action": { "default_title": "Geoguessr Helper", "default_popup": "popup.html" }, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" } } |