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
官方網址 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
}