Vimkey

Use keyboard control browser jump, scroll, switch tab and more

Was ist Vimkey?

Vimkey ist eine Chrome-Erweiterung, die von Haojen entwickelt wurde, und ihr Hauptmerkmal ist "Use keyboard control browser jump, scroll, switch tab and more".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Vimkey-Erweiterungs-CRX-Datei herunterladen

Laden Sie Vimkey-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        You can use the Keyboard control browser,  reduced switching between mouse                    

Grundlegende Informationen zur Erweiterung

Name Vimkey Vimkey
ID eeeandejdamjifbgmmmmonggidbccnnj
Offizielle URL https://chromewebstore.google.com/detail/vimkey/eeeandejdamjifbgmmmmonggidbccnnj
Beschreibung Use keyboard control browser jump, scroll, switch tab and more
Dateigröße 1.77 MB
Installationsanzahl 201
Aktuelle Version 2.8.0
Letztes Update 2022-12-02
Veröffentlichungsdatum 2021-10-19
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler Haojen
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://haojen.github.io/vimkey
Hilfeseite URL https://haojen.github.io/vimkey/#/support
Unterstützte Sprachen en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "2.8.0",
    "icons": {
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": false,
            "js": [
                "content.entry.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "webcomponents-bundle.js",
                "content.view.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.inject.js",
        "images\/icon-64.png",
        "images\/icon-128.png",
        "images\/toolbar-icon-76.png",
        "images\/en-us-keyboard-layout.png"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/toolbar-icon-16.png",
            "19": "images\/toolbar-icon-19.png",
            "32": "images\/toolbar-icon-32.png",
            "38": "images\/toolbar-icon-38.png"
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "clipboardRead",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}