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).」です。
拡張機能のスクリーンショット
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 |
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" ] } |