Modeless Keyboard Navigation

Modeless keyboard navigation based on Vimium.

Modeless Keyboard Navigationคืออะไร?

Modeless Keyboard Navigation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย James Stout และคุณลักษณะหลักของมันคือ "Modeless keyboard navigation based on Vimium."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Modeless Keyboard Navigation

ดาวน์โหลดไฟล์ส่วนขยาย Modeless Keyboard Navigation ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Based on Vimium by Phil Crosby and Ilya Sukhar (see https://github.com/philc/vimium). Unlike Vimium, the keyboard shortcuts can be used at any time, and the default bindings use modifier keys (think Emacs, not Vim). Github: https://github.com/wolfmanstout/vimium                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Modeless Keyboard Navigation Modeless Keyboard Navigation
ID pmfgfecbppcbpjihojdhiphelpikpfcm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/modeless-keyboard-navigat/pmfgfecbppcbpjihojdhiphelpikpfcm
คำอธิบาย Modeless keyboard navigation based on Vimium.
ขนาดไฟล์ 232 KB
จำนวนการติดตั้ง 37
เวอร์ชันปัจจุบัน 1.64.5
อัปเดตครั้งล่าสุด 2019-04-14
วันที่เผยแพร่ 2019-04-13
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา James Stout
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Modeless Keyboard Navigation",
    "version": "1.64.5",
    "description": "Modeless keyboard navigation based on Vimium.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "minimum_chrome_version": "51.0",
    "background": {
        "scripts": [
            "lib\/utils.js",
            "lib\/settings.js",
            "background_scripts\/bg_utils.js",
            "background_scripts\/commands.js",
            "background_scripts\/exclusions.js",
            "background_scripts\/completion_engines.js",
            "background_scripts\/completion_search.js",
            "background_scripts\/completion.js",
            "background_scripts\/marks.js",
            "background_scripts\/main.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "bookmarks",
        "history",
        "clipboardRead",
        "storage",
        "sessions",
        "notifications",
        "webNavigation",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/utils.js",
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/rect.js",
                "lib\/handler_stack.js",
                "lib\/settings.js",
                "lib\/find_mode_history.js",
                "content_scripts\/mode.js",
                "content_scripts\/ui_component.js",
                "content_scripts\/link_hints.js",
                "content_scripts\/vomnibar.js",
                "content_scripts\/scroller.js",
                "content_scripts\/marks.js",
                "content_scripts\/mode_insert.js",
                "content_scripts\/mode_find.js",
                "content_scripts\/mode_key_handler.js",
                "content_scripts\/mode_visual.js",
                "content_scripts\/hud.js",
                "content_scripts\/mode_normal.js",
                "content_scripts\/vimium_frontend.js"
            ],
            "css": [
                "content_scripts\/vimium.css"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/injected.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                "file:\/\/\/",
                "file:\/\/\/*\/"
            ],
            "css": [
                "content_scripts\/file_urls.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icons\/browser_action_disabled.png",
        "default_popup": "pages\/popup.html"
    },
    "web_accessible_resources": [
        "pages\/vomnibar.html",
        "content_scripts\/vimium.css",
        "pages\/hud.html",
        "pages\/help_dialog.html",
        "pages\/completion_engines.html"
    ]
}