Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
Was ist Gobstones Night Mode?
Gobstones Night Mode ist eine Chrome-Erweiterung, die von Amuro entwickelt wurde, und ihr Hauptmerkmal ist "Modo nocturno para Gobstones, el IDE web para aprender a programar.".
Erweiterungsscreenshots
Gobstones Night Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gobstones Night Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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).                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | eddfllfofdmdhafjdocfkpcknflfgfbm | 
| Offizielle URL | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm | 
| Beschreibung | Modo nocturno para Gobstones, el IDE web para aprender a programar. | 
| Dateigröße | 316 KB | 
| Installationsanzahl | 24 | 
| Aktuelle Version | 1.1 | 
| Letztes Update | 2019-04-30 | 
| Veröffentlichungsdatum | 2019-04-30 | 
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | Amuro | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/amuroBosetti/GobstonesNightMode | 
| Unterstützte Sprachen | 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
}  |  |