Highlight to Hilite.me

This extension allows the user to highlight code to send to hilite.me

¿Qué es Highlight to Hilite.me?

Highlight to Hilite.me es una extensión de Chrome desarrollada por http://terryseidler.com, y su función principal es "This extension allows the user to highlight code to send to hilite.me".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Highlight to Hilite.me

Descarga archivos de extensión Highlight to Hilite.me 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

                        Ever found some nice code you wanted to copy to a blog post? This extension lets you select that code, right click it and run it through the hilite.me API to generate proper code highlighted HTML. 

The selected code will be copied to your clipboard, ready for use in one of your blog posts!                    

Información Básica de la Extensión

Nombre Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
URL Oficial https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Descripción This extension allows the user to highlight code to send to hilite.me
Tamaño del Archivo 15.82 KB
Cantidad de Instalaciones 76
Versión Actual 0.1
Última Actualización 2016-03-10
Fecha de Publicación 2016-03-10
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador http://terryseidler.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/tseidler/extension-chrome-hightlight-code
URL de la Página de Ayuda https://github.com/tseidler/extension-chrome-hightlight-code/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight to Hilite.me",
    "description": "This extension allows the user to highlight code to send to hilite.me",
    "version": "0.1",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "storage",
        "notifications",
        "http:\/\/hilite.me\/"
    ],
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selectionListener.js"
            ]
        }
    ]
}