Pardus Starbase Commander

A collection of tools to assist a Starbase Commander manage their starbase within Pardus (a MMORPG set in space).

什么是Pardus Starbase Commander?

Pardus Starbase Commander是由Miche开发的Chrome扩展程序,该扩展的主要功能是“A collection of tools to assist a Starbase Commander manage their starbase within Pardus (a MMORPG set in space).”。

扩展截图

screenshot

下载Pardus Starbase Commander扩展crx文件

下载Pardus Starbase Commander扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Pardus Starbase Commander tools do not send any data anywhere - it reads the information on your starbase management screens and uses that data to provide alternative links and understanding of what the information means.

You can control the settings for each universe, including what tools are enabled.                    

扩展基本信息

名称 Pardus Starbase Commander Pardus Starbase Commander
ID ipddggkkdkdbkglpjenmpfieailhchhg
官方URL https://chromewebstore.google.com/detail/pardus-starbase-commander/ipddggkkdkdbkglpjenmpfieailhchhg
简介 A collection of tools to assist a Starbase Commander manage their starbase within Pardus (a MMORPG set in space).
文件大小 36.79 KB
安装次数 107
当前版本 1.3.1
更新时间 2019-03-20
上架时间 2019-03-20
评分 4.00/5 共1次评分
开发者 Miche
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pardus Starbase Commander",
    "author": "Miche",
    "version": "1.3.1",
    "description": "A collection of tools to assist a Starbase Commander manage their starbase within Pardus (a MMORPG set in space).",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pardus.at\/starbase_overview.php*",
                "*:\/\/*.pardus.at\/starbase_misc_settings.php",
                "*:\/\/*.pardus.at\/starbase_trade_settings.php*",
                "*:\/\/*.pardus.at\/starbase_ship_prices.php*",
                "*:\/\/*.pardus.at\/starbase_paint_shop_settings.php*",
                "*:\/\/*.pardus.at\/starbase_eq_prices.php*",
                "*:\/\/*.pardus.at\/starbase_drop_res.php*",
                "*:\/\/*.pardus.at\/starbase_message.php*",
                "*:\/\/*.pardus.at\/starbase_ship_construction.php*",
                "*:\/\/*.pardus.at\/starbase_eq_construction.php*",
                "*:\/\/*.pardus.at\/starbase_trade_settings.php*"
            ],
            "js": [
                "starbase.js",
                "equipment_data.js"
            ],
            "css": [
                "starbase.css"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/icon_16.png",
            "32": "icons\/icon_32.png",
            "64": "icons\/icon_64.png",
            "128": "icons\/icon_128.png"
        },
        "default_title": "Pardus Starbase Commander",
        "default_popup": "popup\/popup.html",
        "default_area": "navbar"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "images\/*.png"
    ]
}