Ogame Calculator

Several calculations to improve your ogame experience!

Wat is Ogame Calculator?

Ogame Calculator is een Chrome-extensie ontwikkeld door mattieboy, en de belangrijkste functie is "Several calculations to improve your ogame experience!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Ogame Calculator

Download Ogame Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        An Extension to improve your ogame experience with several automatic calculations                    

Basisinformatie over de Extensie

Naam Ogame Calculator Ogame Calculator
ID mgncldbnpngoncllpnepebmjjiencmnl
Officiële URL https://chromewebstore.google.com/detail/ogame-calculator/mgncldbnpngoncllpnepebmjjiencmnl
Beschrijving Several calculations to improve your ogame experience!
Bestandsgrootte 80.65 KB
Aantal Installaties 234
Huidige Versie 0.14.0
Laatst Bijgewerkt 2024-02-15
Publicatiedatum 2022-08-19
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar mattieboy
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://discord.gg/65U4buktPJ
Ondersteunde Talen nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ogame Calculator",
    "description": "Several calculations to improve your ogame experience!",
    "version": "0.14.0",
    "content_scripts": [
        {
            "exclude_matches": [
                "https:\/\/*.ogame.gameforge.com\/game\/admin2\/*"
            ],
            "matches": [
                "https:\/\/*.ogame.gameforge.com\/game\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "ogameHelper.js",
                "resources\/*",
                "messageAnalyzer.js",
                "functions.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "resources\/logo16.png",
        "48": "resources\/logo48.png",
        "128": "resources\/logo128.png"
    },
    "permissions": [
        "https:\/\/*.ogame.gameforge.com\/game\/*"
    ],
    "background": {
        "service_worker": "background.js"
    }
}