Pocket Vim

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

Что такое Pocket Vim?

Pocket Vim - это расширение Chrome, разработанное Nick Tomlin, и его основная функция - "Enable bindings on on sites like Github Gists, JS Bin, CodePen and more.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Pocket Vim

Скачайте файлы расширений 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\/*"
    ]
}