Hilite Me

Easily insert highlighted code into rick text editor.

Co to jest Hilite Me?

Hilite Me to rozszerzenie Chrome opracowane przez greatghoul, a jego główną funkcją jest „Easily insert highlighted code into rick text editor.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Hilite Me

Pobierz pliki rozszerzeń Hilite Me w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
Oficjalny URL https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
Opis Easily insert highlighted code into rick text editor.
Rozmiar pliku 45.81 KB
Liczba instalacji 56
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-02-10
Data Publikacji 2014-02-10
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper greatghoul
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/GDG-Xian/crx-hiliteme
Adres URL Strony Pomocy https://github.com/GDG-Xian/crx-hiliteme/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}