FIO Client

Client for the FIO REST database

Τι είναι το FIO Client;

Το FIO Client είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://fnar.net, και η κύρια λειτουργία του είναι "Client for the FIO REST database".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης FIO Client

Λήψη αρχείων επέκτασης 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 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"
            ]
        }
    ]
}