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
官方網址 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'"
}