Extenssr

'Extenssr - A browser extension for Geoguessr'

Extenssrคืออะไร?

Extenssr เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Extenssr Developers และคุณลักษณะหลักของมันคือ "'Extenssr - A browser extension for Geoguessr'"

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

screenshot

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

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

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

                        This is an extension for the browser based geography game Geoguessr.

Latest change log: https://gitlab.com/nonreviad/extenssr/-/blob/main/Changelog.md

This is a browser extension for the browser based map game Geoguessr.

Current functionality:
- show exact locations for completed Battle Royale rounds
- filter effects on the map
- bookmark locations as you find them on the map
- cursed game modes

Complete features list: https://gitlab.com/nonreviad/extenssr/-/blob/main/Readme.md                    

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

ชื่อ Extenssr Extenssr
ID camiehngogdpflplmapknnjkeeofhfop
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extenssr/camiehngogdpflplmapknnjkeeofhfop
คำอธิบาย 'Extenssr - A browser extension for Geoguessr'
ขนาดไฟล์ 34.91 MB
จำนวนการติดตั้ง 2,692
เวอร์ชันปัจจุบัน 3.11.1
อัปเดตครั้งล่าสุด 2023-11-03
วันที่เผยแพร่ 2021-03-28
คะแนน 4.33/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Extenssr Developers
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extenssr",
    "version": "3.11.1",
    "description": "'Extenssr - A browser extension for Geoguessr'",
    "icons": {
        "48": "icons\/extenssr_48.png",
        "128": "icons\/extenssr_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.geoguessr.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.bundle.js"
            ],
            "css": [
                "css\/styles.css",
                "css\/xterm.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "worker.bundle.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.png",
                "icons\/*.svg",
                "inject_main.bundle.js",
                "ai_worker.bundle.js",
                "geojson_data\/*.geojson",
                "models\/*",
                "wasm\/*"
            ],
            "matches": [
                "https:\/\/www.geoguessr.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}