Hilite Me

Easily insert highlighted code into rick text editor.

Apa itu Hilite Me?

Hilite Me adalah ekstensi Chrome yang dikembangkan oleh greatghoul, dan fitur utamanya adalah "Easily insert highlighted code into rick text editor.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Hilite Me

Unduh file ekstensi 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

                        Hiliteme
=============

A tool to highlight source code in rich text editor. Inspired by [markdown-here]

Code highlight service is powered by http://hilite.me/

## Hiliteme is open source

- **project** https://github.com/GDG-Xian/crx-hiliteme
- **Issues** https://github.com/GDG-Xian/crx-hiliteme/issues
- **LICENSE** https://github.com/GDG-Xian/crx-hiliteme/blob/master/LICENSE

[markdown-here]: http://markdown-here.com/                    

Informasi Dasar Ekstensi

Nama Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
URL Resmi https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
Deskripsi Easily insert highlighted code into rick text editor.
Ukuran File 45.81 KB
Jumlah Instalasi 56
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-02-10
Tanggal Publikasi 2014-02-10
Penilaian 5.00/5 Total 1 Penilaian
Pengembang greatghoul
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/GDG-Xian/crx-hiliteme
URL Halaman Bantuan https://github.com/GDG-Xian/crx-hiliteme/issues
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hilite Me",
    "description": "Easily insert highlighted code into rick text editor.",
    "version": "1.0",
    "icons": {
        "48": "icon\/icon48.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/hilite.me\/api"
    ],
    "browser_action": {
        "default_icon": "icon\/icon48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ]
}