Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
什麼是Gobstones Night Mode?
Gobstones Night Mode是由Amuro開發的Chrome擴展程式,該擴展的主要功能是“Modo nocturno para Gobstones, el IDE web para aprender a programar.”。
擴展截圖
下載Gobstones Night Mode擴展crx文件
下載Gobstones Night Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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).
擴展基本資訊
名稱 | Gobstones Night Mode |
ID | eddfllfofdmdhafjdocfkpcknflfgfbm |
官方網址 | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm |
簡介 | Modo nocturno para Gobstones, el IDE web para aprender a programar. |
檔案大小 | 316 KB |
安裝次數 | 24 |
目前版本 | 1.1 |
更新時間 | 2019-04-30 |
上架時間 | 2019-04-30 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Amuro |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/amuroBosetti/GobstonesNightMode |
支援的語言 | 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 } |