Switch Tab Shortcut
Customize chrome shortcut to switch tabs
ما هو Switch Tab Shortcut؟
Switch Tab Shortcut هو إضافة Chrome تم تطويرها بواسطة Stanley Guevara، والميزة الرئيسية لها هي "Customize chrome shortcut to switch tabs".
تحميل ملف CRX للإضافة Switch Tab Shortcut
قم بتنزيل ملفات الامتداد Switch Tab Shortcut بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Simple extension for switching to next/previous tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
معلومات أساسية عن التمديد
الاسم | Switch Tab Shortcut |
ID | pfeobfgjcmcpgkodpodibnggeanmoddk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk |
الوصف | Customize chrome shortcut to switch tabs |
حجم الملف | 3.37 KB |
عدد التثبيتات | 27 |
النسخة الحالية | 1.0 |
آخر تحديث | 2016-10-16 |
تاريخ النشر | 2016-10-16 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Stanley Guevara |
نوع الدفع | free |
موقع الإضافة | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
عنوان صفحة المساعدة | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Switch Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to switch tabs", "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right", "mac": "Command+Right" }, "description": "Next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left", "mac": "Command+Left" }, "description": "Prev tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |