Geoguessr Helper
A simple extension to help you play Geoguessr better.
Geoguessr Helper क्या है?
Geoguessr Helper SkiingIsFun123 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension to help you play Geoguessr better."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Geoguessr Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |