Georanked
Geoguessr ranked extension to handle ranked games in Geoguessr
Co to jest Georanked?
Georanked to rozszerzenie Chrome opracowane przez jussetain, a jego główną funkcją jest „Geoguessr ranked extension to handle ranked games in Geoguessr”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Georanked
Pobierz pliki rozszerzeń Georanked 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
Georanked will let you play ranked games with geoguessr
Podstawowe informacje o rozszerzeniu
Nazwa | Georanked |
ID | cjkbnjgngfcijeikaehopbhdiiaajdcb |
Oficjalny URL | https://chromewebstore.google.com/detail/georanked/cjkbnjgngfcijeikaehopbhdiiaajdcb |
Opis | Geoguessr ranked extension to handle ranked games in Geoguessr |
Rozmiar pliku | 583 KB |
Liczba instalacji | 86 |
Aktualna Wersja | 0.1.1 |
Ostatnia Aktualizacja | 2020-11-23 |
Data Publikacji | 2020-11-23 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | jussetain |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://georanked.com |
Obsługiwane Języki | 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'" } |