Highlight to Hilite.me

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

Apa itu Highlight to Hilite.me?

Highlight to Hilite.me adalah ekstensi Chrome yang dikembangkan oleh http://terryseidler.com, dan fitur utamanya adalah "This extension allows the user to highlight code to send to hilite.me".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Highlight to Hilite.me

Unduh file ekstensi Highlight to Hilite.me dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
URL Resmi https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Deskripsi This extension allows the user to highlight code to send to hilite.me
Ukuran File 15.82 KB
Jumlah Instalasi 76
Versi Saat Ini 0.1
Terakhir Diperbarui 2016-03-10
Tanggal Publikasi 2016-03-10
Penilaian 5.00/5 Total 1 Penilaian
Pengembang http://terryseidler.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/tseidler/extension-chrome-hightlight-code
URL Halaman Bantuan https://github.com/tseidler/extension-chrome-hightlight-code/issues
Bahasa yang Didukung 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"
            ]
        }
    ]
}