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
官方網址 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\/*"
    ]
}