Ogame Calculator

Several calculations to improve your ogame experience!

什么是Ogame Calculator?

Ogame Calculator是由mattieboy开发的Chrome扩展程序,该扩展的主要功能是“Several calculations to improve your ogame experience!”。

扩展截图

screenshot

下载Ogame Calculator扩展crx文件

下载Ogame Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        An Extension to improve your ogame experience with several automatic calculations                    

扩展基本信息

名称 Ogame Calculator Ogame Calculator
ID mgncldbnpngoncllpnepebmjjiencmnl
官方URL https://chromewebstore.google.com/detail/ogame-calculator/mgncldbnpngoncllpnepebmjjiencmnl
简介 Several calculations to improve your ogame experience!
文件大小 80.65 KB
安装次数 234
当前版本 0.14.0
更新时间 2024-02-15
上架时间 2022-08-19
评分 5.00/5 共2次评分
开发者 mattieboy
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://discord.gg/65U4buktPJ
支持的语言 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"
    }
}