Humanize Blogger Editor

Humanize Blogger Editor

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

Merlin
Additional files are visible only to premium users

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