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是由jetjdsimon開發的Chrome擴展程式,該擴展的主要功能是“A small chrome extension to help developers quickly load mods into TNCT”。

擴展截圖

screenshot

下載The New Campaign Trail Fast Mod Loader擴展crx文件

下載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
官方網址 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"
        }
    }
}