Gobstones Night Mode

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

Wat is Gobstones Night Mode?

Gobstones Night Mode is een Chrome-extensie ontwikkeld door Amuro, en de belangrijkste functie is "Modo nocturno para Gobstones, el IDE web para aprender a programar.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Gobstones Night Mode

Download Gobstones Night Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Gobstones Night Mode Gobstones Night Mode
ID eddfllfofdmdhafjdocfkpcknflfgfbm
Officiële URL https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm
Beschrijving Modo nocturno para Gobstones, el IDE web para aprender a programar.
Bestandsgrootte 316 KB
Aantal Installaties 24
Huidige Versie 1.1
Laatst Bijgewerkt 2019-04-30
Publicatiedatum 2019-04-30
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Amuro
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/amuroBosetti/GobstonesNightMode
Ondersteunde Talen 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
}