Georanked
Geoguessr ranked extension to handle ranked games in Geoguessr
什麼是Georanked?
Georanked是由jussetain開發的Chrome擴展程式,該擴展的主要功能是“Geoguessr ranked extension to handle ranked games in Geoguessr”。
擴展截圖
下載Georanked擴展crx文件
下載Georanked擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Georanked will let you play ranked games with geoguessr
擴展基本資訊
名稱 | Georanked |
ID | cjkbnjgngfcijeikaehopbhdiiaajdcb |
官方網址 | https://chromewebstore.google.com/detail/georanked/cjkbnjgngfcijeikaehopbhdiiaajdcb |
簡介 | Geoguessr ranked extension to handle ranked games in Geoguessr |
檔案大小 | 583 KB |
安裝次數 | 86 |
目前版本 | 0.1.1 |
更新時間 | 2020-11-23 |
上架時間 | 2020-11-23 |
評分 | 5.00/5 共 4 次評分 |
開發者 | jussetain |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://georanked.com |
支援的語言 | 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'" } |