Github Wiki LiveEdit

Adding live editing features into Github wiki.

什么是Github Wiki LiveEdit?

Github Wiki LiveEdit是由Yuya Hashimoto开发的Chrome扩展程序,该扩展的主要功能是“Adding live editing features into Github wiki.”。

扩展截图

下载Github Wiki LiveEdit扩展crx文件

下载Github Wiki LiveEdit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Adding live editing features into Github wiki.                    

扩展基本信息

名称 Github Wiki LiveEdit Github Wiki LiveEdit
ID hlldlinpdlhfhbdihggmipnjgbaibfnc
官方URL https://chromewebstore.google.com/detail/github-wiki-liveedit/hlldlinpdlhfhbdihggmipnjgbaibfnc
简介 Adding live editing features into Github wiki.
文件大小 12.37 KB
安装次数 78
当前版本 1.0.3
更新时间 2016-05-03
上架时间 2016-05-03
评分 5.00/5 共2次评分
开发者 Yuya Hashimoto
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/yuya/github-wiki-live-edit
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Wiki LiveEdit",
    "description": "Adding live editing features into Github wiki.",
    "version": "1.0.3",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": "img\/icon-19.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/wiki\/*\/_edit",
                "https:\/\/github.com\/*\/wiki\/_new"
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "19": "img\/icon-19.png",
        "38": "img\/[email protected]",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "web_accessible_resources": [
        "img\/*.png",
        "img\/*.gif"
    ],
    "manifest_version": 2
}