Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
Vad är Gobstones Night Mode?
Gobstones Night Mode är en Chrome-tillägg utvecklad av Amuro, och dess huvudfunktion är "Modo nocturno para Gobstones, el IDE web para aprender a programar.".
Tilläggsskärmbilder
Ladda ner Gobstones Night Mode-förlängningens CRX-fil
Ladda ner Gobstones Night Mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Gobstones Night Mode |
ID | eddfllfofdmdhafjdocfkpcknflfgfbm |
Officiell webbadress | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm |
Beskrivning | Modo nocturno para Gobstones, el IDE web para aprender a programar. |
Filstorlek | 316 KB |
Antal Installationer | 24 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2019-04-30 |
Publiceringsdatum | 2019-04-30 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Amuro |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/amuroBosetti/GobstonesNightMode |
Stödda Språk | 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 } |