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
公式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
Eメール [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"
            ]
        }
    ]
}