Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
Cos'è Gobstones Night Mode?
Gobstones Night Mode è un'estensione di Chrome sviluppata da Amuro, e la sua funzione principale è "Modo nocturno para Gobstones, el IDE web para aprender a programar.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gobstones Night Mode
Scarica i file di estensione Gobstones Night Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        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).                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | eddfllfofdmdhafjdocfkpcknflfgfbm | 
| URL Ufficiale | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm | 
| Descrizione | Modo nocturno para Gobstones, el IDE web para aprender a programar. | 
| Dimensione del File | 316 KB | 
| Conteggio Installazioni | 24 | 
| Versione Corrente | 1.1 | 
| Ultimo Aggiornamento | 2019-04-30 | 
| Data di Pubblicazione | 2019-04-30 | 
| Valutazione | 5.00/5 Totale 1 Valutazioni | 
| Sviluppatore | Amuro | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/amuroBosetti/GobstonesNightMode | 
| Lingue Supportate | 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
}  |  |