The New Campaign Trail Fast Mod Loader

A small chrome extension to help developers quickly load mods into TNCT

Co to jest The New Campaign Trail Fast Mod Loader?

The New Campaign Trail Fast Mod Loader to rozszerzenie Chrome opracowane przez jetjdsimon, a jego główną funkcją jest „A small chrome extension to help developers quickly load mods into TNCT”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia The New Campaign Trail Fast Mod Loader

Pobierz pliki rozszerzeń The New Campaign Trail Fast Mod Loader 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

                        Click on the icon in your extensions bar to fill in your code 1 and code 2.

Right click when you're on The New Campaign Trail site and you will have a "Load TNCT Mod" option that will automatically load your mod in.                    

Podstawowe informacje o rozszerzeniu

Nazwa The New Campaign Trail Fast Mod Loader The New Campaign Trail Fast Mod Loader
ID nidjfeolnfjpnklfokkfocccifgmipoh
Oficjalny URL https://chromewebstore.google.com/detail/the-new-campaign-trail-fa/nidjfeolnfjpnklfokkfocccifgmipoh
Opis A small chrome extension to help developers quickly load mods into TNCT
Rozmiar pliku 9.36 KB
Liczba instalacji 91
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-05-17
Data Publikacji 2023-05-14
Deweloper jetjdsimon
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": "The New Campaign Trail Fast Mod Loader",
    "version": "1.0.0",
    "description": "A small chrome extension to help developers quickly load mods into TNCT",
    "permissions": [
        "contextMenus",
        "activeTab",
        "scripting",
        "tabs",
        "storage"
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/www.newcampaigntrail.com\/campaign-trail\/index.html"
    ],
    "icons": {
        "128": "images\/mod-loader.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "The New Campaign Trail Fast Mod Loader",
        "default_icon": {
            "128": "images\/mod-loader.png"
        }
    }
}