Humanize Blogger Editor

Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.

Что такое Humanize Blogger Editor?

Humanize Blogger Editor - это расширение Chrome, разработанное Leonid Vasilyev, и его основная функция - "Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.".

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

screenshot

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

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

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

                        This extension is for those who:
a. loves Blogger platform
b. prefers write posts in html
c. doesn't feel fulfilled with an original Blogger html editor

There are html syntax highlight, html beautification and following hotkeys in the first version:
Beautify html: Ctrl-B
Insert image: Ctrl-I
Publish/Update: Ctrl-J
Save/Revert to draft: Ctrl-K
Preview: Ctrl-L
Close: Ctrl-Q

The only English interface is supported. There will be support for theme switch and Mac in future versions.
OR maybe something even more mind blowing than Mac support.                    

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

Название Humanize Blogger Editor Humanize Blogger Editor
ID eajgmklihlmnnlpejikagagfndcekdei
Официальный URL https://chromewebstore.google.com/detail/humanize-blogger-editor/eajgmklihlmnnlpejikagagfndcekdei
Описание Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.
Размер файла 183 KB
Количество установок 160
Текущая Версия 1.0
Последнее Обновление 2015-02-06
Дата публикации 2015-02-06
Рейтинг 3.78/5 Всего 9 оценок
Разработчик Leonid Vasilyev
Тип оплаты free
Официальный сайт расширения https://github.com/LeonidVasilyev/humanize-blogger-editor
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Humanize Blogger Editor",
    "description": "Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/www.blogger.com\/*",
                "https:\/\/www.blogger.com\/*"
            ],
            "css": [
                "css\/humanize.css"
            ],
            "js": [
                "js\/libs\/jquery-1.11.2.min.js",
                "js\/libs\/js-beautify\/beautify-html.js",
                "js\/libs\/ace\/ace.js",
                "js\/libs\/ace\/mode-html.js",
                "js\/libs\/ace\/theme-monokai.js",
                "js\/humanize.js"
            ]
        }
    ],
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "minimum_chrome_version": "26",
    "content_security_policy": "default-src 'none'"
}