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                     擴展基本資訊
| 名稱 |   |  
| ID | honhnhpbngledkpkocmeihfgkfmocmkh | 
| 官方網址 | 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"
            ]
        }
    ]
}  |  |