Highlight to Hilite.me

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

O que é Highlight to Hilite.me?

Highlight to Hilite.me é uma extensão do Chrome desenvolvida por http://terryseidler.com, e sua principal característica é "This extension allows the user to highlight code to send to hilite.me".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Highlight to Hilite.me

Baixe arquivos de extensão Highlight to Hilite.me 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

                        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!                    

Informações Básicas da Extensão

Nome Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
URL Oficial https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Descrição This extension allows the user to highlight code to send to hilite.me
Tamanho do Arquivo 15.82 KB
Contagem de Instalações 76
Versão Atual 0.1
Última Atualização 2016-03-10
Data de Publicação 2016-03-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor http://terryseidler.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/tseidler/extension-chrome-hightlight-code
URL da Página de Ajuda https://github.com/tseidler/extension-chrome-hightlight-code/issues
Idiomas Suportados 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"
            ]
        }
    ]
}