Pocket Vim

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

Pocket Vim là gì?

Pocket Vim là một tiện ích mở rộng Chrome được phát triển bởi Nick Tomlin, và tính năng chính của nó là "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pocket Vim

Tải xuống các tệp mở rộng Pocket Vim dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pocket Vim Pocket Vim
ID pjnhffdkdckcagdmfmidafhppbomjdjg
URL Chính Thức https://chromewebstore.google.com/detail/pocket-vim/pjnhffdkdckcagdmfmidafhppbomjdjg
Mô tả Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.
Kích Thước Tệp 83.3 KB
Số Lần Cài Đặt 314
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2017-06-03
Ngày Phát Hành 2017-06-03
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Nick Tomlin
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/NickTomlin/pocketvim
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}