Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
Co to jest Gobstones Night Mode?
Gobstones Night Mode to rozszerzenie Chrome opracowane przez Amuro, a jego główną funkcją jest „Modo nocturno para Gobstones, el IDE web para aprender a programar.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gobstones Night Mode
Pobierz pliki rozszerzeń Gobstones Night Mode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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).                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | eddfllfofdmdhafjdocfkpcknflfgfbm | 
| Oficjalny URL | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm | 
| Opis | Modo nocturno para Gobstones, el IDE web para aprender a programar. | 
| Rozmiar pliku | 316 KB | 
| Liczba instalacji | 24 | 
| Aktualna Wersja | 1.1 | 
| Ostatnia Aktualizacja | 2019-04-30 | 
| Data Publikacji | 2019-04-30 | 
| Ocena | 5.00/5 Łącznie 1 Oceny | 
| Deweloper | Amuro | 
| [email protected] | |
| Typ Płatności | free | 
| Strona Rozszerzenia | https://github.com/amuroBosetti/GobstonesNightMode | 
| Obsługiwane Języki | 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
}  |  |