FIO Client
Client for the FIO REST database
FIO Clientとは何ですか?
FIO Clientはhttps://fnar.netによって開発されたChromeの拡張機能で、その主な機能は「Client for the FIO REST database」です。
拡張機能のスクリーンショット
FIO Client拡張機能のCRXファイルをダウンロード
FIO Client拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The FIO Client forwards ProsperousUniverse game data to the FIO REST Server so that it can be used in a shared manner. Exchange data, planet data, local market data, among others are gathered in a crowdsourced manner practically guaranteeing that all data on the FIO REST Server is up-to-date. Once properly authenticated, the data can be retrieved using other tools which authenticate against the REST API or FIOWeb which is available at https://fio.fnar.net/ Getting Started: 1) Install the extension 2) Refresh APEX (https://apex.prosperousuniverse.com) 3) Click on the extension icon, and click "Register" 4) Return after registering and login
拡張機能の基本情報
名前 | FIO Client |
ID | honhnhpbngledkpkocmeihfgkfmocmkh |
公式URL | https://chromewebstore.google.com/detail/fio-client/honhnhpbngledkpkocmeihfgkfmocmkh |
説明 | Client for the FIO REST database |
ファイルサイズ | 149 KB |
インストール数 | 992 |
現在のバージョン | 2.2 |
最終更新日 | 2024-01-27 |
公開日 | 2023-04-09 |
評価 | 5.00/5 合計 8 レビュー |
開発者 | https://fnar.net |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://fio.fnar.net |
ヘルプページのURL | https://discord.gg/jPnnR3h9pX |
プライバシーポリシーページのURL | https://fnar.net/page/privacy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FIO Client", "description": "Client for the FIO REST database", "version": "2.2", "manifest_version": 3, "icons": { "16": "\/common\/assets\/fio-16.png", "32": "\/common\/assets\/fio-32.png", "48": "\/common\/assets\/fio-48.png", "128": "\/common\/assets\/fio-128.png" }, "action": { "default_popup": "\/common\/popup.html", "default_icon": { "16": "\/common\/assets\/fio-16.png", "32": "\/common\/assets\/fio-32.png", "48": "\/common\/assets\/fio-48.png", "128": "\/common\/assets\/fio-128.png" }, "dim_icon": { "16": "\/common\/assets\/fio-16-dim.png", "32": "\/common\/assets\/fio-32-dim.png", "48": "\/common\/assets\/fio-48-dim.png", "128": "\/common\/assets\/fio-128-dim.png" } }, "background": { "service_worker": "service_worker.js" }, "permissions": [ "storage", "activeTab", "scripting", "tabs" ], "host_permissions": [ "https:\/\/apex.prosperousuniverse.com\/*", "https:\/\/rest.fnar.net\/*" ], "content_scripts": [ { "matches": [ "https:\/\/apex.prosperousuniverse.com\/*", "https:\/\/rest.fnar.net\/*" ], "run_at": "document_start", "js": [ "content_script.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/apex.prosperousuniverse.com\/*", "https:\/\/rest.fnar.net\/*" ], "resources": [ "page_script.js", "common\/uploader.js" ] } ] } |