Gobstones Night Mode

Modo nocturno para Gobstones, el IDE web para aprender a programar.

Gobstones Night Modeคืออะไร?

Gobstones Night Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Amuro และคุณลักษณะหลักของมันคือ "Modo nocturno para Gobstones, el IDE web para aprender a programar."

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

screenshot
screenshot

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

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

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

                        Gobstones Night Mode is a Chrome extension that changes the colors and background on the web IDE for the Gobstones programming language (you can learn more about it here: https://github.com/gobstones).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gobstones Night Mode Gobstones Night Mode
ID eddfllfofdmdhafjdocfkpcknflfgfbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm
คำอธิบาย Modo nocturno para Gobstones, el IDE web para aprender a programar.
ขนาดไฟล์ 316 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2019-04-30
วันที่เผยแพร่ 2019-04-30
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Amuro
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/amuroBosetti/GobstonesNightMode
ภาษาที่รองรับ es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gobstones Night Mode",
    "version": "1.1",
    "description": "Modo nocturno para Gobstones, el IDE web para aprender a programar.",
    "permissions": [
        "tabs",
        "https:\/\/gobstones.github.io\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gobstones.github.io\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/icon.png"
    },
    "icons": {
        "256": "images\/icon.png"
    },
    "manifest_version": 2
}