KeyboardMode

This extension allows you to open links with your Keyboard.

ما هو KeyboardMode؟

KeyboardMode هو إضافة Chrome تم تطويرها بواسطة https://hanneshofer.github.io/KeyboardMode، والميزة الرئيسية لها هي "This extension allows you to open links with your Keyboard.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة KeyboardMode

قم بتنزيل ملفات الامتداد KeyboardMode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension allows you to control chrome with your keyboard.
With the alreay knows hotkeys it is already possible to control most parts of chrome (ex. Enter new URL, go back, go forward)
after pressing a certain, adjustable, hotkey this extension shows links hints (see screenshot)
when the shown characters in the link hints are pressed the relevant link will be opend.
with "meta" keys it is possible to open certain links in new tab, new window or in new incognito window.                    

معلومات أساسية عن التمديد

الاسم KeyboardMode KeyboardMode
ID gceomdpidnmgddihieakclncpopaiplc
عنوان URL الرسمي https://chromewebstore.google.com/detail/keyboardmode/gceomdpidnmgddihieakclncpopaiplc
الوصف This extension allows you to open links with your Keyboard.
حجم الملف 44.36 KB
عدد التثبيتات 11
النسخة الحالية 0.1
آخر تحديث 2014-08-19
تاريخ النشر 2014-08-19
تقييم 5.00/5 مجموع تقييمات 2
المطور https://hanneshofer.github.io/KeyboardMode
نوع الدفع free
اللغات المدعومة de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "This extension allows you to open links with your Keyboard.",
    "icons": {
        "128": "icon.png"
    },
    "version": "0.1",
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "lib\/background.js"
        ]
    },
    "commands": {
        "activate_link_hints": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Link Hints anzeigen"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/option_utils.js",
                "link_hints.js",
                "command.js"
            ],
            "css": [
                "keyboardmode.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}