KeyboardShortcuts

Add Keyboard Shortcuts to Web Applications

ما هو KeyboardShortcuts؟

KeyboardShortcuts هو إضافة Chrome تم تطويرها بواسطة farleigh، والميزة الرئيسية لها هي "Add Keyboard Shortcuts to Web Applications".

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

screenshot

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

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

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

                        Add custom keyboard shortcuts (hotkeys) to specific web applications using a small flexible language. Currently supports commands including copying content into the clipboard, clicking, touching, opening new pages, focusing on elements, hiding elements on the page and setting content.                    

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

الاسم KeyboardShortcuts KeyboardShortcuts
ID oiigclempgcopbccpbibeembdmbenpce
عنوان URL الرسمي https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce
الوصف Add Keyboard Shortcuts to Web Applications
حجم الملف 498 KB
عدد التثبيتات 76
النسخة الحالية 1.0.0
آخر تحديث 2016-04-24
تاريخ النشر 2016-04-24
تقييم 5.00/5 مجموع تقييمات 1
المطور farleigh
نوع الدفع free
موقع الإضافة https://github.com/farleigh/keyboardshortcuts/wiki
عنوان صفحة المساعدة https://github.com/farleigh/keyboardshortcuts/wiki
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KeyboardShortcuts",
    "version": "1.0.0",
    "description": "Add Keyboard Shortcuts to Web Applications",
    "homepage_url": "https:\/\/github.com\/farleigh\/keyboardshortcuts\/wiki",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/3p\/almond-min.js",
                "js\/3p\/jquery.js",
                "js\/3p\/mousetrap.js",
                "js\/keyboard-shortcuts-bundle.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "clipboardWrite",
        "downloads"
    ],
    "browser_action": {
        "default_icon": "images\/favicon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "images\/favicon.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}