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是由http://terryseidler.com開發的Chrome擴展程式,該擴展的主要功能是“This extension allows the user to highlight code to send to hilite.me”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Highlight to Hilite.me擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}