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

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

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