Ogame Live

Ogame Live allow real time display of planets production

Cos'è Ogame Live?

Ogame Live è un'estensione di Chrome sviluppata da loclamor, e la sua funzione principale è "Ogame Live allow real time display of planets production".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Ogame Live

Scarica i file di estensione Ogame Live in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        OgameLive  allow a real time display of planets production

More, OgameLive shows inflight resources, remaining constructions times and give you some practical ameliorations.

OgameLive is compatible with Ogame V7.


--- Change-log
* v1.4.4
 - Moons support

Full changelog can be found on : https://github.com/loclamor/ogameLive/releases                    

Informazioni di Base sull'Estensione

Nome Ogame Live Ogame Live
ID kijpfogegmohboihemehfhgfngkibpcd
URL Ufficiale https://chromewebstore.google.com/detail/ogame-live/kijpfogegmohboihemehfhgfngkibpcd
Descrizione Ogame Live allow real time display of planets production
Dimensione del File 117 KB
Conteggio Installazioni 806
Versione Corrente 2.2.0
Ultimo Aggiornamento 2023-03-25
Data di Pubblicazione 2020-05-04
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore loclamor
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/loclamor/ogameLive
URL della Pagina di Aiuto https://github.com/loclamor/ogameLive/issues
Lingue Supportate en,en-US,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.2.0",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "fr",
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "icons": {
        "128": "src\/ogameLive-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.ogame.gameforge.com\/game\/*"
            ],
            "js": [
                "contribs\/jquery.min.js",
                "src\/constants.js",
                "src\/dataManager.js",
                "src\/utilities.js",
                "src\/router.js",
                "src\/ogameLive.js",
                "src\/parameters.js",
                "src\/observers\/techDetailObserver.js",
                "src\/observers\/flyingFleetObserver.js",
                "src\/displays\/awesomeFlightsDisplay.js",
                "src\/displays\/betterFleetDisplay.js",
                "src\/displays\/betterTechDisplay.js",
                "src\/displays\/planetsProductionDisplay.js",
                "src\/parsers\/empireParser.js",
                "src\/parsers\/resourcesParser.js",
                "src\/parsers\/researchParser.js",
                "src\/parsers\/lifeParser.js",
                "src\/parsers\/installationsParser.js",
                "src\/parsers\/flyingFleetParser.js",
                "src\/parsers\/fleetParser.js",
                "src\/parsers\/resourceSettingsParser.js",
                "src\/parsers\/planetProductionParser.js",
                "src\/parsers\/techDetailParser.js",
                "src\/ogameLive.user.js",
                "src\/worker.js"
            ],
            "css": [
                "src\/ogameLive.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/ogameLive.css",
                "src\/window.js",
                "src\/ogameLive-128.png",
                "src\/planet-targets.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "src\/worker.js"
    },
    "permissions": [],
    "short_name": "ogameLive",
    "action": {
        "default_title": "ogameLive",
        "default_icon": "src\/ogameLive-128.png",
        "default_popup": "src\/ogameLive.html"
    }
}