GeoGuessr timer
This extension adds timers to GeoGuessr score bar
Co to jest GeoGuessr timer?
GeoGuessr timer to rozszerzenie Chrome opracowane przez fabrice404, a jego główną funkcją jest „This extension adds timers to GeoGuessr score bar”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GeoGuessr timer
Pobierz pliki rozszerzeń GeoGuessr timer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | GeoGuessr timer |
ID | cpkgpifaafehooacgbigplegdgbnhcbi |
Oficjalny URL | https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi |
Opis | This extension adds timers to GeoGuessr score bar |
Rozmiar pliku | 26.67 KB |
Liczba instalacji | 1,580 |
Aktualna Wersja | 1.1.2 |
Ostatnia Aktualizacja | 2023-11-09 |
Data Publikacji | 2019-08-22 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | fabrice404 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/fabrice404/geoguessr-timer |
Adres URL Strony Pomocy | https://github.com/fabrice404/geoguessr-timer/issues |
Obsługiwane Języki | 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" } } |