ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
ما هو ctrl-access؟
ctrl-access هو إضافة Chrome تم تطويرها بواسطة Florian Loitsch، والميزة الرئيسية لها هي "Navigate to links with a trigger key (by default the ctrl-key).".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ctrl-access
قم بتنزيل ملفات الامتداد ctrl-access بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
                        This chrome extension allows to navigate to links with a trigger key (by default the ctrl-key). In many cases this removes the need for a mouse.
This extension is a copy of Konqueror's access-key functionality.                     معلومات أساسية عن التمديد
| الاسم |   |  
| ID | glmoehiilkjpgcimmfodllkkhpeikomb | 
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb | 
| الوصف | Navigate to links with a trigger key (by default the ctrl-key). | 
| حجم الملف | 725 KB | 
| عدد التثبيتات | 68 | 
| النسخة الحالية | 0.7.0 | 
| آخر تحديث | 2020-08-16 | 
| تاريخ النشر | 2019-12-16 | 
| تقييم | 5.00/5 مجموع تقييمات 4 | 
| المطور | Florian Loitsch | 
| البريد الإلكتروني | [email protected] | 
| نوع الدفع | free | 
| موقع الإضافة | https://github.com/floitsch/ctrl-access | 
| اللغات المدعومة | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ctrl-access",
    "version": "0.7.0",
    "description": "Navigate to links with a trigger key (by default the ctrl-key).",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.7.2.min.js",
                "ctrl-access.js"
            ],
            "css": [
                "ctrl-access.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_page": "options.html"
}  |  |