Pocket Vim

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

什么是Pocket Vim?

Pocket Vim是由Nick Tomlin开发的Chrome扩展程序,该扩展的主要功能是“Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.”。

扩展截图

screenshot

下载Pocket Vim扩展crx文件

下载Pocket Vim扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
官方URL https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
简介 Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
文件大小 83.3 KB
安装次数 314
当前版本 0.1.2
更新时间 2017-06-03
上架时间 2017-06-03
评分 5.00/5 共6次评分
开发者 Nick Tomlin
付费类型 free
帮助页面URL https://github.com/NickTomlin/pocketvim
支持的语言 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\/*"
    ]
}