Hilite Me

Easily insert highlighted code into rick text editor.

Hilite Me là gì?

Hilite Me là một tiện ích mở rộng Chrome được phát triển bởi greatghoul, và tính năng chính của nó là "Easily insert highlighted code into rick text editor.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hilite Me

Tải xuống các tệp mở rộng Hilite Me dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hilite Me Hilite Me
ID opdkneimogpljnhdedpppmoaljedhfib
URL Chính Thức https://chrome.google.com/webstore/detail/hilite-me/opdkneimogpljnhdedpppmoaljedhfib
Mô tả Easily insert highlighted code into rick text editor.
Kích Thước Tệp 45.81 KB
Số Lần Cài Đặt 56
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-02-10
Ngày Phát Hành 2014-02-10
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển greatghoul
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/GDG-Xian/crx-hiliteme
URL Trang Trợ Giúp https://github.com/GDG-Xian/crx-hiliteme/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}