Pocket Vim

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

Hvad er Pocket Vim?

Pocket Vim er en Chrome-udvidelse udviklet af Nick Tomlin, og dens hovedfunktion er "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Udvidelsesskærmbilleder

screenshot

Download Pocket Vim-udvidelses-CRX-fil

Download Pocket Vim-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
Officiel URL https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Beskrivelse Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Filstørrelse 83.3 KB
Antal Installationer 314
Nuværende Version 0.1.2
Senest Opdateret 2017-06-03
Udgivelsesdato 2017-06-03
Bedømmelse 5.00/5 Samlet 6 Bedømmelser
Udvikler Nick Tomlin
Betalingsmetode free
Hjælpeside-URL https://github.com/NickTomlin/pocketvim
Understøttede Sprog 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\/*"
    ]
}