Pocket Vim

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

Vad är Pocket Vim?

Pocket Vim är en Chrome-tillägg utvecklad av Nick Tomlin, och dess huvudfunktion är "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Tilläggsskärmbilder

screenshot

Ladda ner Pocket Vim-förlängningens CRX-fil

Ladda ner Pocket Vim-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
Officiell webbadress https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Beskrivning Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Filstorlek 83.3 KB
Antal Installationer 314
Aktuell Version 0.1.2
Senast Uppdaterad 2017-06-03
Publiceringsdatum 2017-06-03
Betyg 5.00/5 Totalt 6 Betyg
Utvecklare Nick Tomlin
Betalningssätt free
Hjälpsida URL https://github.com/NickTomlin/pocketvim
Stödda Språk 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\/*"
    ]
}