Inspect and view changes in GeoTop1 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "GeoTop1",
"author": "Corentin Grard",
"version": "1.1.1",
"description": "Track your winrate in Geoguessr Battle Royale mode",
"applications": {
"gecko": {
"id": "corentin.grard@gmail.com"
}
},
"permissions": [
"*://*.geoguessr.com/*",
"storage",
"tabs"
],
"browser_action": {
"default_icon": "icons/geotop1-logo-32.png",
"default_title": "GeoTop1",
"default_popup": "popup/geotop1.html"
},
"background": {
"scripts": [
"background/background-counter.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.geoguessr.com/battle-royale*"
],
"js": [
"js/counter.js",
"js/ws-listener.js"
]
}
]
}