Pocket Vim

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

O que é Pocket Vim?

Pocket Vim é uma extensão do Chrome desenvolvida por Nick Tomlin, e sua principal característica é "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Pocket Vim

Baixe arquivos de extensão Pocket Vim no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
URL Oficial https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Descrição Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Tamanho do Arquivo 83.3 KB
Contagem de Instalações 314
Versão Atual 0.1.2
Última Atualização 2017-06-03
Data de Publicação 2017-06-03
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor Nick Tomlin
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/NickTomlin/pocketvim
Idiomas Suportados 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\/*"
    ]
}