Github Wiki LiveEdit

Adding live editing features into Github wiki.

Vad är Github Wiki LiveEdit?

Github Wiki LiveEdit är en Chrome-tillägg utvecklad av Yuya Hashimoto, och dess huvudfunktion är "Adding live editing features into Github wiki.".

Tilläggsskärmbilder

Ladda ner Github Wiki LiveEdit-förlängningens CRX-fil

Ladda ner Github Wiki LiveEdit-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Adding live editing features into Github wiki.                    

Grundläggande Information om Tillägg

Namn Github Wiki LiveEdit Github Wiki LiveEdit
ID hlldlinpdlhfhbdihggmipnjgbaibfnc
Officiell webbadress https://chromewebstore.google.com/detail/github-wiki-liveedit/hlldlinpdlhfhbdihggmipnjgbaibfnc
Beskrivning Adding live editing features into Github wiki.
Filstorlek 12.37 KB
Antal Installationer 78
Aktuell Version 1.0.3
Senast Uppdaterad 2016-05-03
Publiceringsdatum 2016-05-03
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Yuya Hashimoto
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/yuya/github-wiki-live-edit
Stödda Språk 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
}