Humanize Blogger Editor
Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.
¿Qué es Humanize Blogger Editor?
Humanize Blogger Editor es una extensión de Chrome desarrollada por Leonid Vasilyev, y su función principal es "Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Humanize Blogger Editor
Descarga archivos de extensión Humanize Blogger Editor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Humanize Blogger Editor |
ID | eajgmklihlmnnlpejikagagfndcekdei |
URL Oficial | https://chromewebstore.google.com/detail/humanize-blogger-editor/eajgmklihlmnnlpejikagagfndcekdei |
Descripción | Add syntax highlighting, beautification and hotkeys to Blogger posts html editor. |
Tamaño del Archivo | 183 KB |
Cantidad de Instalaciones | 160 |
Versión Actual | 1.0 |
Última Actualización | 2015-02-06 |
Fecha de Publicación | 2015-02-06 |
Calificación | 3.78/5 Total de 9 Calificaciones |
Desarrollador | Leonid Vasilyev |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/LeonidVasilyev/humanize-blogger-editor |
Idiomas Soportados | 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'" } |