Pocket Vim

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

Cos'è Pocket Vim?

Pocket Vim è un'estensione di Chrome sviluppata da Nick Tomlin, e la sua funzione principale è "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pocket Vim

Scarica i file di estensione Pocket Vim in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
URL Ufficiale https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Descrizione Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Dimensione del File 83.3 KB
Conteggio Installazioni 314
Versione Corrente 0.1.2
Ultimo Aggiornamento 2017-06-03
Data di Pubblicazione 2017-06-03
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore Nick Tomlin
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/NickTomlin/pocketvim
Lingue Supportate 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\/*"
    ]
}