Github Wiki LiveEdit

Adding live editing features into Github wiki.

Qu'est-ce que Github Wiki LiveEdit ?

Github Wiki LiveEdit est une extension Chrome développée par Yuya Hashimoto, et sa fonction principale est "Adding live editing features into Github wiki.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Github Wiki LiveEdit

Téléchargez les fichiers d'extension Github Wiki LiveEdit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Adding live editing features into Github wiki.                    

Informations de Base sur l'Extension

Nom Github Wiki LiveEdit Github Wiki LiveEdit
ID hlldlinpdlhfhbdihggmipnjgbaibfnc
URL Officiel https://chromewebstore.google.com/detail/github-wiki-liveedit/hlldlinpdlhfhbdihggmipnjgbaibfnc
Description Adding live editing features into Github wiki.
Taille du Fichier 12.37 KB
Nombre d'Installations 78
Version Actuelle 1.0.3
Dernière Mise à Jour 2016-05-03
Date de Publication 2016-05-03
Évaluation 5.00/5 Total 2 Évaluations
Développeur Yuya Hashimoto
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/yuya/github-wiki-live-edit
Langues Prises en Charge 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
}