Hilite Me

Easily insert highlighted code into rick text editor.

Vad är Hilite Me?

Hilite Me är en Chrome-tillägg utvecklad av greatghoul, och dess huvudfunktion är "Easily insert highlighted code into rick text editor.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Hilite Me-förlängningens CRX-fil

Ladda ner Hilite Me-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
Officiell webbadress https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
Beskrivning Easily insert highlighted code into rick text editor.
Filstorlek 45.81 KB
Antal Installationer 56
Aktuell Version 1.0
Senast Uppdaterad 2014-02-10
Publiceringsdatum 2014-02-10
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare greatghoul
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/GDG-Xian/crx-hiliteme
Hjälpsida URL https://github.com/GDG-Xian/crx-hiliteme/issues
Stödda Språk 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"
            ]
        }
    ]
}