Pocket Vim

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

Was ist Pocket Vim?

Pocket Vim ist eine Chrome-Erweiterung, die von Nick Tomlin entwickelt wurde, und ihr Hauptmerkmal ist "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Erweiterungsscreenshots

screenshot

Pocket Vim-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pocket Vim-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
Offizielle URL https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Beschreibung Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Dateigröße 83.3 KB
Installationsanzahl 314
Aktuelle Version 0.1.2
Letztes Update 2017-06-03
Veröffentlichungsdatum 2017-06-03
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler Nick Tomlin
Zahlungsart free
Hilfeseite URL https://github.com/NickTomlin/pocketvim
Unterstützte Sprachen 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\/*"
    ]
}