GeoGuessr timer
This extension adds timers to GeoGuessr score bar
Co je GeoGuessr timer?
GeoGuessr timer je rozšíření Chrome vyvinuté fabrice404, a jeho hlavní funkcí je „This extension adds timers to GeoGuessr score bar“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GeoGuessr timer
Stáhněte si soubory rozšíření GeoGuessr timer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | GeoGuessr timer |
ID | cpkgpifaafehooacgbigplegdgbnhcbi |
Oficiální URL | https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi |
Popis | This extension adds timers to GeoGuessr score bar |
Velikost souboru | 26.67 KB |
Počet instalací | 1,580 |
Aktuální Verze | 1.1.2 |
Poslední Aktualizace | 2023-11-09 |
Datum Vydání | 2019-08-22 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | fabrice404 |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/fabrice404/geoguessr-timer |
URL Stránky Nápovědy | https://github.com/fabrice404/geoguessr-timer/issues |
Podporované Jazyky | 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" } } |