GeoGuessr timer
This extension adds timers to GeoGuessr score bar
Vad är GeoGuessr timer?
GeoGuessr timer är en Chrome-tillägg utvecklad av fabrice404, och dess huvudfunktion är "This extension adds timers to GeoGuessr score bar".
Tilläggsskärmbilder
Ladda ner GeoGuessr timer-förlängningens CRX-fil
Ladda ner GeoGuessr timer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | cpkgpifaafehooacgbigplegdgbnhcbi |
| Officiell webbadress | https://chromewebstore.google.com/detail/geoguessr-timer/cpkgpifaafehooacgbigplegdgbnhcbi |
| Beskrivning | This extension adds timers to GeoGuessr score bar |
| Filstorlek | 26.67 KB |
| Antal Installationer | 1,580 |
| Aktuell Version | 1.1.2 |
| Senast Uppdaterad | 2023-11-09 |
| Publiceringsdatum | 2019-08-22 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | fabrice404 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/fabrice404/geoguessr-timer |
| Hjälpsida URL | https://github.com/fabrice404/geoguessr-timer/issues |
| Stödda Språk | 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"
}
} | |