Humanize Blogger Editor
Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.
O que é Humanize Blogger Editor?
Humanize Blogger Editor é uma extensão do Chrome desenvolvida por Leonid Vasilyev, e sua principal característica é "Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Humanize Blogger Editor
Baixe arquivos de extensão Humanize Blogger Editor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Humanize Blogger Editor |
ID | eajgmklihlmnnlpejikagagfndcekdei |
URL Oficial | https://chromewebstore.google.com/detail/humanize-blogger-editor/eajgmklihlmnnlpejikagagfndcekdei |
Descrição | Add syntax highlighting, beautification and hotkeys to Blogger posts html editor. |
Tamanho do Arquivo | 183 KB |
Contagem de Instalações | 160 |
Versão Atual | 1.0 |
Última Atualização | 2015-02-06 |
Data de Publicação | 2015-02-06 |
Classificação | 3.78/5 Total de 9 Avaliações |
Desenvolvedor | Leonid Vasilyev |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/LeonidVasilyev/humanize-blogger-editor |
Idiomas Suportados | 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'" } |