Highlight to Hilite.me

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

Was ist Highlight to Hilite.me?

Highlight to Hilite.me ist eine Chrome-Erweiterung, die von http://terryseidler.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows the user to highlight code to send to hilite.me".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Highlight to Hilite.me-Erweiterungs-CRX-Datei herunterladen

Laden Sie Highlight to Hilite.me-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
Offizielle URL https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Beschreibung This extension allows the user to highlight code to send to hilite.me
Dateigröße 15.82 KB
Installationsanzahl 76
Aktuelle Version 0.1
Letztes Update 2016-03-10
Veröffentlichungsdatum 2016-03-10
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler http://terryseidler.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tseidler/extension-chrome-hightlight-code
Hilfeseite URL https://github.com/tseidler/extension-chrome-hightlight-code/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}