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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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\/*"
    ]
}