Georanked

Geoguessr ranked extension to handle ranked games in Geoguessr

Georankedคืออะไร?

Georanked เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jussetain และคุณลักษณะหลักของมันคือ "Geoguessr ranked extension to handle ranked games in Geoguessr"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Georanked

ดาวน์โหลดไฟล์ส่วนขยาย Georanked ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Georanked will let you play ranked games with geoguessr                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Georanked Georanked
ID cjkbnjgngfcijeikaehopbhdiiaajdcb
URL อย่างเป็นทางการ 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'"
}