Hilite Me

Easily insert highlighted code into rick text editor.

ما هو Hilite Me؟

Hilite Me هو إضافة Chrome تم تطويرها بواسطة greatghoul، والميزة الرئيسية لها هي "Easily insert highlighted code into rick text editor.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Hilite Me

قم بتنزيل ملفات الامتداد Hilite Me بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/                    

معلومات أساسية عن التمديد

الاسم Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
عنوان URL الرسمي https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
الوصف Easily insert highlighted code into rick text editor.
حجم الملف 45.81 KB
عدد التثبيتات 56
النسخة الحالية 1.0
آخر تحديث 2014-02-10
تاريخ النشر 2014-02-10
تقييم 5.00/5 مجموع تقييمات 1
المطور greatghoul
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/GDG-Xian/crx-hiliteme
عنوان صفحة المساعدة https://github.com/GDG-Xian/crx-hiliteme/issues
اللغات المدعومة 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"
            ]
        }
    ]
}