TarkovGenie

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

Co to jest TarkovGenie?

TarkovGenie to rozszerzenie Chrome opracowane przez Souris ET, a jego główną funkcją jest „MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia TarkovGenie

Pobierz pliki rozszerzeń TarkovGenie 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa TarkovGenie TarkovGenie
ID mmgdhlfkhegdnekkioecjnnhgnplgdoa
Oficjalny URL https://chromewebstore.google.com/detail/tarkovgenie/mmgdhlfkhegdnekkioecjnnhgnplgdoa
Opis MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future
Rozmiar pliku 37.42 KB
Liczba instalacji 90
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2021-12-18
Data Publikacji 2021-12-13
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Souris ET
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}