The New Campaign Trail Fast Mod Loader
A small chrome extension to help developers quickly load mods into TNCT
Was ist The New Campaign Trail Fast Mod Loader?
The New Campaign Trail Fast Mod Loader ist eine Chrome-Erweiterung, die von jetjdsimon entwickelt wurde, und ihr Hauptmerkmal ist "A small chrome extension to help developers quickly load mods into TNCT".
Erweiterungsscreenshots
The New Campaign Trail Fast Mod Loader-Erweiterungs-CRX-Datei herunterladen
Laden Sie The New Campaign Trail Fast Mod Loader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nidjfeolnfjpnklfokkfocccifgmipoh |
| Offizielle URL | https://chromewebstore.google.com/detail/the-new-campaign-trail-fa/nidjfeolnfjpnklfokkfocccifgmipoh |
| Beschreibung | A small chrome extension to help developers quickly load mods into TNCT |
| Dateigröße | 9.36 KB |
| Installationsanzahl | 91 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2023-05-17 |
| Veröffentlichungsdatum | 2023-05-14 |
| Entwickler | jetjdsimon |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
}
} | |