Highlight to Hilite.me

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

Highlight to Hilite.me là gì?

Highlight to Hilite.me là một tiện ích mở rộng Chrome được phát triển bởi http://terryseidler.com, và tính năng chính của nó là "This extension allows the user to highlight code to send to hilite.me".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Highlight to 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

                        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!                    

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

Tên Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
URL Chính Thức https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Mô tả This extension allows the user to highlight code to send to hilite.me
Kích Thước Tệp 15.82 KB
Số Lần Cài Đặt 76
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2016-03-10
Ngày Phát Hành 2016-03-10
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://terryseidler.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tseidler/extension-chrome-hightlight-code
URL Trang Trợ Giúp https://github.com/tseidler/extension-chrome-hightlight-code/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}