Hilite Me

Easily insert highlighted code into rick text editor.

Что такое Hilite Me?

Hilite Me - это расширение Chrome, разработанное greatghoul, и его основная функция - "Easily insert highlighted code into rick text editor.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Hilite Me

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

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

                        Hiliteme
=============

A tool to highlight source code in rich text editor. Inspired by [markdown-here]

Code highlight service is powered by http://hilite.me/

## Hiliteme is open source

- **project** https://github.com/GDG-Xian/crx-hiliteme
- **Issues** https://github.com/GDG-Xian/crx-hiliteme/issues
- **LICENSE** https://github.com/GDG-Xian/crx-hiliteme/blob/master/LICENSE

[markdown-here]: http://markdown-here.com/                    

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

Название Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
Официальный URL https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
Описание Easily insert highlighted code into rick text editor.
Размер файла 45.81 KB
Количество установок 56
Текущая Версия 1.0
Последнее Обновление 2014-02-10
Дата публикации 2014-02-10
Рейтинг 5.00/5 Всего 1 оценок
Разработчик greatghoul
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/GDG-Xian/crx-hiliteme
URL страницы помощи https://github.com/GDG-Xian/crx-hiliteme/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hilite Me",
    "description": "Easily insert highlighted code into rick text editor.",
    "version": "1.0",
    "icons": {
        "48": "icon\/icon48.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/hilite.me\/api"
    ],
    "browser_action": {
        "default_icon": "icon\/icon48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ]
}