Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
Hvad er Gobstones Night Mode?
Gobstones Night Mode er en Chrome-udvidelse udviklet af Amuro, og dens hovedfunktion er "Modo nocturno para Gobstones, el IDE web para aprender a programar.".
Udvidelsesskærmbilleder
Download Gobstones Night Mode-udvidelses-CRX-fil
Download Gobstones Night Mode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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).
Grundlæggende oplysninger om udvidelsen
Navn | Gobstones Night Mode |
ID | eddfllfofdmdhafjdocfkpcknflfgfbm |
Officiel URL | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm |
Beskrivelse | Modo nocturno para Gobstones, el IDE web para aprender a programar. |
Filstørrelse | 316 KB |
Antal Installationer | 24 |
Nuværende Version | 1.1 |
Senest Opdateret | 2019-04-30 |
Udgivelsesdato | 2019-04-30 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Amuro |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/amuroBosetti/GobstonesNightMode |
Understøttede Sprog | 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 } |