Humanize Blogger Editor

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

Humanize Blogger Editorとは何ですか?

Humanize Blogger EditorはLeonid Vasilyevによって開発されたChromeの拡張機能で、その主な機能は「Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.」です。

拡張機能のスクリーンショット

screenshot

Humanize Blogger Editor拡張機能のCRXファイルをダウンロード

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'"
}