Github Wiki LiveEdit

Adding live editing features into Github wiki.

What is Github Wiki LiveEdit?

Github Wiki LiveEdit is a Chrome extension developed by Yuya Hashimoto, and its main feature is "Adding live editing features into Github wiki.".

Extension Screenshots

Download Github Wiki LiveEdit Extension CRX File

Download Github Wiki LiveEdit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Adding live editing features into Github wiki.                    

Extension Basic Information

Name Github Wiki LiveEdit Github Wiki LiveEdit
ID hlldlinpdlhfhbdihggmipnjgbaibfnc
Official URL https://chromewebstore.google.com/detail/github-wiki-liveedit/hlldlinpdlhfhbdihggmipnjgbaibfnc
Description Adding live editing features into Github wiki.
File Size 12.37 KB
Installation Count 78
Current Version 1.0.3
Last Updated 2016-05-03
Publish Date 2016-05-03
Rating 5.00/5 Total 2 Ratings
Developer Yuya Hashimoto
Email [email protected]
Payment Type free
Extension Website https://github.com/yuya/github-wiki-live-edit
Supported Languages 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
}