Hilite Me

Easily insert highlighted code into rick text editor.

Wat is Hilite Me?

Hilite Me is een Chrome-extensie ontwikkeld door greatghoul, en de belangrijkste functie is "Easily insert highlighted code into rick text editor.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Hilite Me

Download Hilite Me-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
Officiële URL https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
Beschrijving Easily insert highlighted code into rick text editor.
Bestandsgrootte 45.81 KB
Aantal Installaties 56
Huidige Versie 1.0
Laatst Bijgewerkt 2014-02-10
Publicatiedatum 2014-02-10
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar greatghoul
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/GDG-Xian/crx-hiliteme
Help Pagina-URL https://github.com/GDG-Xian/crx-hiliteme/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}