The New Campaign Trail Fast Mod Loader

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

Что такое The New Campaign Trail Fast Mod Loader?

The New Campaign Trail Fast Mod Loader - это расширение Chrome, разработанное jetjdsimon, и его основная функция - "A small chrome extension to help developers quickly load mods into TNCT".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения The New Campaign Trail Fast Mod Loader

Скачайте файлы расширений The New Campaign Trail Fast Mod Loader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название The New Campaign Trail Fast Mod Loader The New Campaign Trail Fast Mod Loader
ID nidjfeolnfjpnklfokkfocccifgmipoh
Официальный URL https://chromewebstore.google.com/detail/the-new-campaign-trail-fa/nidjfeolnfjpnklfokkfocccifgmipoh
Описание A small chrome extension to help developers quickly load mods into TNCT
Размер файла 9.36 KB
Количество установок 91
Текущая Версия 1.0.0
Последнее Обновление 2023-05-17
Дата публикации 2023-05-14
Разработчик jetjdsimon
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
        }
    }
}