Highlight to Hilite.me

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

Hvad er Highlight to Hilite.me?

Highlight to Hilite.me er en Chrome-udvidelse udviklet af http://terryseidler.com, og dens hovedfunktion er "This extension allows the user to highlight code to send to hilite.me".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Highlight to Hilite.me-udvidelses-CRX-fil

Download Highlight to Hilite.me-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
Officiel URL https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Beskrivelse This extension allows the user to highlight code to send to hilite.me
Filstørrelse 15.82 KB
Antal Installationer 76
Nuværende Version 0.1
Senest Opdateret 2016-03-10
Udgivelsesdato 2016-03-10
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler http://terryseidler.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/tseidler/extension-chrome-hightlight-code
Hjælpeside-URL https://github.com/tseidler/extension-chrome-hightlight-code/issues
Understøttede Sprog 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"
            ]
        }
    ]
}