Hilite Me

Easily insert highlighted code into rick text editor.

什么是Hilite Me?

Hilite Me是由greatghoul开发的Chrome扩展程序,该扩展的主要功能是“Easily insert highlighted code into rick text editor.”。

扩展截图

screenshot
screenshot
screenshot

下载Hilite Me扩展crx文件

下载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"
            ]
        }
    ]
}