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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}