GeoGuessr timer
This extension adds timers to GeoGuessr score bar
GeoGuessr timer क्या है?
GeoGuessr timer fabrice404 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds timers to GeoGuessr score bar"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GeoGuessr timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension adds timers to the score bar of GeoGuessr. - Rounds mode: one timer for each round, and one for the total time. - Streak: one timer for the current round, and one for the total time Made by fabrice404, updated by oh2mp
एक्सटेंशन की मूल जानकारी
नाम | GeoGuessr timer |
ID | cpkgpifaafehooacgbigplegdgbnhcbi |
आधिकारिक URL | https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi |
विवरण | This extension adds timers to GeoGuessr score bar |
फ़ाइल का आकार | 26.67 KB |
स्थापना संख्या | 1,580 |
वर्तमान संस्करण | 1.1.2 |
अंतिम अपडेट | 2023-11-09 |
प्रकाशन तिथि | 2019-08-22 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | fabrice404 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/fabrice404/geoguessr-timer |
सहायता पृष्ठ URL | https://github.com/fabrice404/geoguessr-timer/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GeoGuessr timer", "version": "1.1.2", "description": "This extension adds timers to GeoGuessr score bar", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "src\/play.js" ], "matches": [ "https:\/\/geoguessr.com\/*", "https:\/\/www.geoguessr.com\/*" ], "run_at": "document_start" } ], "icons": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "options_ui": { "page": "src\/settings.html" }, "action": { "default_title": "GeoGuessr Timer", "default_popup": "src\/settings.html" } } |