Hilite Me

Easily insert highlighted code into rick text editor.

What is Hilite Me?

Hilite Me is a Chrome extension developed by greatghoul, and its main feature is "Easily insert highlighted code into rick text editor.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Hilite Me Extension CRX File

Download Hilite Me extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
Official URL https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
Description Easily insert highlighted code into rick text editor.
File Size 45.81 KB
Installation Count 56
Current Version 1.0
Last Updated 2014-02-10
Publish Date 2014-02-10
Rating 5.00/5 Total 1 Ratings
Developer greatghoul
Email [email protected]
Payment Type free
Extension Website https://github.com/GDG-Xian/crx-hiliteme
Help Page URL https://github.com/GDG-Xian/crx-hiliteme/issues
Supported Languages 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"
            ]
        }
    ]
}