Georanked
Geoguessr ranked extension to handle ranked games in Geoguessr
Wat is Georanked?
Georanked is een Chrome-extensie ontwikkeld door jussetain, en de belangrijkste functie is "Geoguessr ranked extension to handle ranked games in Geoguessr".
Extensie Screenshots
Download het CRX-bestand van de extensie Georanked
Download Georanked-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Georanked will let you play ranked games with geoguessr
Basisinformatie over de Extensie
Naam | Georanked |
ID | cjkbnjgngfcijeikaehopbhdiiaajdcb |
Officiële URL | https://chromewebstore.google.com/detail/georanked/cjkbnjgngfcijeikaehopbhdiiaajdcb |
Beschrijving | Geoguessr ranked extension to handle ranked games in Geoguessr |
Bestandsgrootte | 583 KB |
Aantal Installaties | 86 |
Huidige Versie | 0.1.1 |
Laatst Bijgewerkt | 2020-11-23 |
Publicatiedatum | 2020-11-23 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | jussetain |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://georanked.com |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Georanked", "version": "0.1.1", "description": "Geoguessr ranked extension to handle ranked games in Geoguessr", "browser_action": { "default_popup": "index.html" }, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "manifest_version": 2, "background": { "matches": [ "*" ], "scripts": [ "jquery.js", "script.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.geoguessr.com\/*" ], "js": [ "jquery.js", "script.js" ], "run_at": "document_start" } ], "permissions": [ "webRequest", "https:\/\/www.geoguessr.com\/*", "storage", "tabs" ], "content_security_policy": "default-src 'none'; script-src 'self'; connect-src http:\/\/georanked.com:3690 https:\/\/www.geoguessr.com\/* http:\/\/www.geoguessr.com\/* http:\/\/localhost:3690; img-src http:\/\/georanked.com:3690\/* https:\/\/static-cdn.jtvnw.net\/* https:\/\/www.static-cdn.jtvnw.net\/* http:\/\/localhost:3690 data: https: http:; style-src 'self'" } |