Codebattle

Web-extension for CodeBattle

Codebattleคืออะไร?

Codebattle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Glagius และคุณลักษณะหลักของมันคือ "Web-extension for CodeBattle"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codebattle

ดาวน์โหลดไฟล์ส่วนขยาย Codebattle ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}