TarkovGenie

MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future

TarkovGenieคืออะไร?

TarkovGenie เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Souris ET และคุณลักษณะหลักของมันคือ "MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future"

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

screenshot

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

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

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

                        Tarkov Helper extension which is making Tarkov fandom wiki more readable, and also auto select POIs on MapGenie maps and hide disturbing sidebars and toolbars. Plan is to allow you to check/uncheck POIs, for now it's statical by my opinions.                    

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

ชื่อ TarkovGenie TarkovGenie
ID mmgdhlfkhegdnekkioecjnnhgnplgdoa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tarkovgenie/mmgdhlfkhegdnekkioecjnnhgnplgdoa
คำอธิบาย MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future
ขนาดไฟล์ 37.42 KB
จำนวนการติดตั้ง 90
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2021-12-18
วันที่เผยแพร่ 2021-12-13
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Souris ET
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TarkovGenie",
    "description": "MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future",
    "version": "0.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mapgenie.io\/tarkov\/maps\/*"
            ],
            "js": [
                "maphook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/mapgenie.io\/tarkov\/maps\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/escapefromtarkov.fandom.com\/wiki\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "wikiclean.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}