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.”。
扩展截图
下载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 |
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'" } |