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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
            ]
        }
    ]
}