CodinGame IDEA Editor

CodinGame IDEA Editor allows you to edit code, execute particular test case and see result directly in Intellij IDEA.

Что такое CodinGame IDEA Editor?

CodinGame IDEA Editor - это расширение Chrome, разработанное Oleksandr Kravchenko, и его основная функция - "CodinGame IDEA Editor allows you to edit code, execute particular test case and see result directly in Intellij IDEA.".

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

screenshot

Скачать файл CRX расширения CodinGame IDEA Editor

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

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

                        Intellij IDEA plugin and instruction:
https://bitbucket.org/kalex375/cgedit/overview                    

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

Название CodinGame IDEA Editor CodinGame IDEA Editor
ID hikpllmiijacdljhdlnnkdddhncmljif
Официальный URL https://chrome.google.com/webstore/detail/codingame-idea-editor/hikpllmiijacdljhdlnnkdddhncmljif
Описание CodinGame IDEA Editor allows you to edit code, execute particular test case and see result directly in Intellij IDEA.
Размер файла 25.84 KB
Количество установок 514
Текущая Версия 0.3
Последнее Обновление 2016-10-10
Дата публикации 2016-10-10
Рейтинг 3.00/5 Всего 4 оценок
Разработчик Oleksandr Kravchenko
Тип оплаты free
Официальный сайт расширения https://bitbucket.org/kalex375/cgedit/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodinGame IDEA Editor",
    "description": "CodinGame IDEA Editor allows you to edit code, execute particular test case and see result directly in Intellij IDEA.",
    "version": "0.3",
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "homepage_url": "https:\/\/bitbucket.org\/madcap99\/cgedit\/",
    "icons": {
        "16": "img\/logo16.png",
        "48": "img\/logo48.png",
        "128": "img\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.codingame.com\/*",
                "https:\/\/www.codingame.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injected_content.js",
        "injected_css.css"
    ]
}