Gobstones Night Mode

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

Apa itu Gobstones Night Mode?

Gobstones Night Mode adalah ekstensi Chrome yang dikembangkan oleh Amuro, dan fitur utamanya adalah "Modo nocturno para Gobstones, el IDE web para aprender a programar.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Gobstones Night Mode

Unduh file ekstensi Gobstones Night Mode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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).                    

Informasi Dasar Ekstensi

Nama Gobstones Night Mode Gobstones Night Mode
ID eddfllfofdmdhafjdocfkpcknflfgfbm
URL Resmi https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm
Deskripsi Modo nocturno para Gobstones, el IDE web para aprender a programar.
Ukuran File 316 KB
Jumlah Instalasi 24
Versi Saat Ini 1.1
Terakhir Diperbarui 2019-04-30
Tanggal Publikasi 2019-04-30
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Amuro
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/amuroBosetti/GobstonesNightMode
Bahasa yang Didukung 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
}