TarkovGenie

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

O que é TarkovGenie?

TarkovGenie é uma extensão do Chrome desenvolvida por Souris ET, e sua principal característica é "MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão TarkovGenie

Baixe arquivos de extensão TarkovGenie no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome TarkovGenie TarkovGenie
ID mmgdhlfkhegdnekkioecjnnhgnplgdoa
URL Oficial https://chromewebstore.google.com/detail/tarkovgenie/mmgdhlfkhegdnekkioecjnnhgnplgdoa
Descrição MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future
Tamanho do Arquivo 37.42 KB
Contagem de Instalações 90
Versão Atual 0.2
Última Atualização 2021-12-18
Data de Publicação 2021-12-13
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Souris ET
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}