Mind The Mark

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

Что такое Mind The Mark?

Mind The Mark - это расширение Chrome, разработанное GroovyDragon, и его основная функция - "Turns the basic wiki text input into a real code editor!".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Mind The Mark

Скачайте файлы расширений Mind The Mark в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Mind The Mark Mind The Mark
ID jkagocihmkabhekcmdgiloihalnoliai
Официальный URL https://chromewebstore.google.com/detail/mind-the-mark/jkagocihmkabhekcmdgiloihalnoliai
Описание Turns the basic wiki text input into a real code editor!
Размер файла 342 KB
Количество установок 66
Текущая Версия 2
Последнее Обновление 2019-03-08
Дата публикации 2019-03-08
Рейтинг 5.00/5 Всего 2 оценок
Разработчик GroovyDragon
Тип оплаты free
Официальный сайт расширения https://github.com/ucligem2015/Mind-The-Mark
Поддерживаемые языки 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"
    ]
}