Pocket Vim

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

Wat is Pocket Vim?

Pocket Vim is een Chrome-extensie ontwikkeld door Nick Tomlin, en de belangrijkste functie is "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Pocket Vim

Download Pocket Vim-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
Officiële URL https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Beschrijving Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Bestandsgrootte 83.3 KB
Aantal Installaties 314
Huidige Versie 0.1.2
Laatst Bijgewerkt 2017-06-03
Publicatiedatum 2017-06-03
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar Nick Tomlin
Betalingswijze free
Help Pagina-URL https://github.com/NickTomlin/pocketvim
Ondersteunde Talen 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\/*"
    ]
}