Humanize Blogger Editor

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

Qu'est-ce que Humanize Blogger Editor ?

Humanize Blogger Editor est une extension Chrome développée par Leonid Vasilyev, et sa fonction principale est "Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Humanize Blogger Editor

Téléchargez les fichiers d'extension Humanize Blogger Editor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Humanize Blogger Editor Humanize Blogger Editor
ID eajgmklihlmnnlpejikagagfndcekdei
URL Officiel https://chromewebstore.google.com/detail/humanize-blogger-editor/eajgmklihlmnnlpejikagagfndcekdei
Description Add syntax highlighting, beautification and hotkeys to Blogger posts html editor.
Taille du Fichier 183 KB
Nombre d'Installations 160
Version Actuelle 1.0
Dernière Mise à Jour 2015-02-06
Date de Publication 2015-02-06
Évaluation 3.78/5 Total 9 Évaluations
Développeur Leonid Vasilyev
Type de Paiement free
Site Web de l'Extension https://github.com/LeonidVasilyev/humanize-blogger-editor
Langues Prises en Charge 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'"
}