Highlight to Hilite.me

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

Vad är Highlight to Hilite.me?

Highlight to Hilite.me är en Chrome-tillägg utvecklad av http://terryseidler.com, och dess huvudfunktion är "This extension allows the user to highlight code to send to hilite.me".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Highlight to Hilite.me-förlängningens CRX-fil

Ladda ner Highlight to Hilite.me-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
Officiell webbadress https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Beskrivning This extension allows the user to highlight code to send to hilite.me
Filstorlek 15.82 KB
Antal Installationer 76
Aktuell Version 0.1
Senast Uppdaterad 2016-03-10
Publiceringsdatum 2016-03-10
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare http://terryseidler.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tseidler/extension-chrome-hightlight-code
Hjälpsida URL https://github.com/tseidler/extension-chrome-hightlight-code/issues
Stödda Språk 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"
            ]
        }
    ]
}