The New Campaign Trail Fast Mod Loader

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

Qu'est-ce que The New Campaign Trail Fast Mod Loader ?

The New Campaign Trail Fast Mod Loader est une extension Chrome développée par jetjdsimon, et sa fonction principale est "A small chrome extension to help developers quickly load mods into TNCT".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension The New Campaign Trail Fast Mod Loader

Téléchargez les fichiers d'extension The New Campaign Trail Fast Mod Loader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom The New Campaign Trail Fast Mod Loader The New Campaign Trail Fast Mod Loader
ID nidjfeolnfjpnklfokkfocccifgmipoh
URL Officiel https://chromewebstore.google.com/detail/the-new-campaign-trail-fa/nidjfeolnfjpnklfokkfocccifgmipoh
Description A small chrome extension to help developers quickly load mods into TNCT
Taille du Fichier 9.36 KB
Nombre d'Installations 91
Version Actuelle 1.0.0
Dernière Mise à Jour 2023-05-17
Date de Publication 2023-05-14
Développeur jetjdsimon
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    }
}