Mind The Mark

Turns the basic wiki text input into a real code editor!

Co to jest Mind The Mark?

Mind The Mark to rozszerzenie Chrome opracowane przez GroovyDragon, a jego główną funkcją jest „Turns the basic wiki text input into a real code editor!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Mind The Mark

Pobierz pliki rozszerzeń Mind The Mark 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

                        This turn the iGEM wiki into an amazing code editor instead of the boring and bland text editor you're used to.                    

Podstawowe informacje o rozszerzeniu

Nazwa Mind The Mark Mind The Mark
ID jkagocihmkabhekcmdgiloihalnoliai
Oficjalny URL https://chromewebstore.google.com/detail/mind-the-mark/jkagocihmkabhekcmdgiloihalnoliai
Opis Turns the basic wiki text input into a real code editor!
Rozmiar pliku 342 KB
Liczba instalacji 66
Aktualna Wersja 2
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper GroovyDragon
Typ Płatności free
Strona Rozszerzenia https://github.com/ucligem2015/Mind-The-Mark
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mind The Mark",
    "description": "Turns the basic wiki text input into a real code editor!",
    "manifest_version": 2,
    "version": "2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js",
                "codemirror.js",
                "modes\/xml.js",
                "addons\/matchtags.js"
            ],
            "css": [
                "codemirror.css",
                "monokai.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js",
        "codemirror.js",
        "codemirror.css",
        "addons\/matchtags.js",
        "hint\/show-hint.css",
        "hint\/show-hint.js",
        "hint\/xml-hint.js",
        "hint\/html-hint.js"
    ]
}