Pocket Vim

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

Apa itu Pocket Vim?

Pocket Vim adalah ekstensi Chrome yang dikembangkan oleh Nick Tomlin, dan fitur utamanya adalah "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Pocket Vim

Unduh file ekstensi Pocket Vim dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
URL Resmi https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Deskripsi Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Ukuran File 83.3 KB
Jumlah Instalasi 314
Versi Saat Ini 0.1.2
Terakhir Diperbarui 2017-06-03
Tanggal Publikasi 2017-06-03
Penilaian 5.00/5 Total 6 Penilaian
Pengembang Nick Tomlin
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/NickTomlin/pocketvim
Bahasa yang Didukung 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\/*"
    ]
}