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). 扩展基本信息
| 名称 | |
| ID | eddfllfofdmdhafjdocfkpcknflfgfbm |
| 官方URL | 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
} | |