Ogame Calculator

Several calculations to improve your ogame experience!

ما هو Ogame Calculator؟

Ogame Calculator هو إضافة Chrome تم تطويرها بواسطة mattieboy، والميزة الرئيسية لها هي "Several calculations to improve your ogame experience!".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Ogame Calculator

قم بتنزيل ملفات الامتداد Ogame Calculator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}