Highlight to Hilite.me

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

Qu'est-ce que Highlight to Hilite.me ?

Highlight to Hilite.me est une extension Chrome développée par http://terryseidler.com, et sa fonction principale est "This extension allows the user to highlight code to send to hilite.me".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Highlight to Hilite.me

Téléchargez les fichiers d'extension Highlight to Hilite.me 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

                        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!                    

Informations de Base sur l'Extension

Nom Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
URL Officiel https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Description This extension allows the user to highlight code to send to hilite.me
Taille du Fichier 15.82 KB
Nombre d'Installations 76
Version Actuelle 0.1
Dernière Mise à Jour 2016-03-10
Date de Publication 2016-03-10
Évaluation 5.00/5 Total 1 Évaluations
Développeur http://terryseidler.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tseidler/extension-chrome-hightlight-code
URL de la Page d'Aide https://github.com/tseidler/extension-chrome-hightlight-code/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}