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 | 
| Eメール | [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
}  |  |