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 |
电子邮箱 | [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" ] } ] } |