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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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