Highlight to Hilite.me

This extension allows the user to highlight code to send to hilite.me

ما هو Highlight to Hilite.me؟

Highlight to Hilite.me هو إضافة Chrome تم تطويرها بواسطة http://terryseidler.com، والميزة الرئيسية لها هي "This extension allows the user to highlight code to send to hilite.me".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Highlight to Hilite.me

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

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

                        Ever found some nice code you wanted to copy to a blog post? This extension lets you select that code, right click it and run it through the hilite.me API to generate proper code highlighted HTML. 

The selected code will be copied to your clipboard, ready for use in one of your blog posts!                    

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

الاسم Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
عنوان URL الرسمي https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
الوصف This extension allows the user to highlight code to send to hilite.me
حجم الملف 15.82 KB
عدد التثبيتات 76
النسخة الحالية 0.1
آخر تحديث 2016-03-10
تاريخ النشر 2016-03-10
تقييم 5.00/5 مجموع تقييمات 1
المطور http://terryseidler.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/tseidler/extension-chrome-hightlight-code
عنوان صفحة المساعدة https://github.com/tseidler/extension-chrome-hightlight-code/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight to Hilite.me",
    "description": "This extension allows the user to highlight code to send to hilite.me",
    "version": "0.1",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "storage",
        "notifications",
        "http:\/\/hilite.me\/"
    ],
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selectionListener.js"
            ]
        }
    ]
}