Pocket Vim

Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.

Qu'est-ce que Pocket Vim ?

Pocket Vim est une extension Chrome développée par Nick Tomlin, et sa fonction principale est "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Pocket Vim

Téléchargez les fichiers d'extension Pocket Vim 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

                        Ever miss those wonderful Vim motions in js-based code editor? Pine no longer.

Note: 

This is extension is still in development. Please submit any bus/feature requests to the github repo: https://github.com/NickTomlin/pocketvim                    

Informations de Base sur l'Extension

Nom Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
URL Officiel https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Description Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Taille du Fichier 83.3 KB
Nombre d'Installations 314
Version Actuelle 0.1.2
Dernière Mise à Jour 2017-06-03
Date de Publication 2017-06-03
Évaluation 5.00/5 Total 6 Évaluations
Développeur Nick Tomlin
Type de Paiement free
URL de la Page d'Aide https://github.com/NickTomlin/pocketvim
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pocket Vim",
    "version": "0.1.2",
    "manifest_version": 2,
    "description": "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.",
    "default_locale": "en",
    "icons": {
        "64": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "html\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/page.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "tabs"
    ],
    "web_accessible_resources": [
        "scripts\/*",
        "html\/*",
        "css\/*",
        "images\/*"
    ]
}