Codebattle

Web-extension for CodeBattle

ما هو Codebattle؟

Codebattle هو إضافة Chrome تم تطويرها بواسطة Glagius، والميزة الرئيسية لها هي "Web-extension for CodeBattle".

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

screenshot

تحميل ملف CRX للإضافة Codebattle

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

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

                        Browser extension for CodeBattle.
Helps to keep track of new games and events on the site.                    

معلومات أساسية عن التمديد

الاسم Codebattle Codebattle
ID embfhnfkfobkdohleknckodkmhgmpdli
عنوان URL الرسمي https://chromewebstore.google.com/detail/codebattle/embfhnfkfobkdohleknckodkmhgmpdli
الوصف Web-extension for CodeBattle
حجم الملف 491 KB
عدد التثبيتات 1,825
النسخة الحالية 0.1.6
آخر تحديث 2021-02-15
تاريخ النشر 2020-06-28
تقييم 5.00/5 مجموع تقييمات 2
المطور Glagius
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://codebattle.hexlet.io/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codebattle",
    "description": "Web-extension for CodeBattle",
    "homepage_url": "https:\/\/codebattle.hexlet.io\/",
    "version": "0.1.6",
    "manifest_version": 2,
    "icons": {
        "128": "assets\/128.png"
    },
    "browser_action": {
        "default_icon": "assets\/128.png",
        "default_title": "CodeBattle webExtension",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "permissions": [
        "*:\/\/codebattle.hexlet.io\/",
        "*:\/\/localhost\/*",
        "notifications",
        "cookies",
        "windows",
        "storage"
    ]
}