Hilite Me

Easily insert highlighted code into rick text editor.

Qu'est-ce que Hilite Me ?

Hilite Me est une extension Chrome développée par greatghoul, et sa fonction principale est "Easily insert highlighted code into rick text editor.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Hilite Me

Téléchargez les fichiers d'extension Hilite Me au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
URL Officiel https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
Description Easily insert highlighted code into rick text editor.
Taille du Fichier 45.81 KB
Nombre d'Installations 56
Version Actuelle 1.0
Dernière Mise à Jour 2014-02-10
Date de Publication 2014-02-10
Évaluation 5.00/5 Total 1 Évaluations
Développeur greatghoul
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/GDG-Xian/crx-hiliteme
URL de la Page d'Aide https://github.com/GDG-Xian/crx-hiliteme/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}