Highlight to Hilite.me

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

Cos'è Highlight to Hilite.me?

Highlight to Hilite.me è un'estensione di Chrome sviluppata da http://terryseidler.com, e la sua funzione principale è "This extension allows the user to highlight code to send to hilite.me".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Highlight to Hilite.me

Scarica i file di estensione Highlight to Hilite.me in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
URL Ufficiale https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Descrizione This extension allows the user to highlight code to send to hilite.me
Dimensione del File 15.82 KB
Conteggio Installazioni 76
Versione Corrente 0.1
Ultimo Aggiornamento 2016-03-10
Data di Pubblicazione 2016-03-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore http://terryseidler.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tseidler/extension-chrome-hightlight-code
URL della Pagina di Aiuto https://github.com/tseidler/extension-chrome-hightlight-code/issues
Lingue Supportate 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"
            ]
        }
    ]
}