Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
What is Gobstones Night Mode?
Gobstones Night Mode is a Chrome extension developed by Amuro, and its main feature is "Modo nocturno para Gobstones, el IDE web para aprender a programar.".
Extension Screenshots
Download Gobstones Night Mode Extension CRX File
Download Gobstones Night Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | Gobstones Night Mode |
ID | eddfllfofdmdhafjdocfkpcknflfgfbm |
Official URL | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm |
Description | Modo nocturno para Gobstones, el IDE web para aprender a programar. |
File Size | 316 KB |
Installation Count | 24 |
Current Version | 1.1 |
Last Updated | 2019-04-30 |
Publish Date | 2019-04-30 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Amuro |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/amuroBosetti/GobstonesNightMode |
Supported Languages | 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 } |