Tab Cycler
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
ما هو Tab Cycler؟
Tab Cycler هو إضافة Chrome تم تطويرها بواسطة benl، والميزة الرئيسية لها هي "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tab Cycler
قم بتنزيل ملفات الامتداد Tab Cycler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left Arrow -> Cycle tab left. Alt-Shift-Right Arrow -> Cycle tab right. To customize shortcuts: Settings -> Extensions -> Keyboard shortcuts (bottom of page) Code hosted at: https://github.com/benletchford/chrome-tab-cycler
معلومات أساسية عن التمديد
الاسم | Tab Cycler |
ID | bognkjnmfbfjobpbmbnnhhojmikehonf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf |
الوصف | Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left… |
حجم الملف | 5.02 KB |
عدد التثبيتات | 58 |
النسخة الحالية | 0.2 |
آخر تحديث | 2016-08-01 |
تاريخ النشر | 2016-07-31 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | benl |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Cycler", "version": "0.2", "icons": { "128": "icon.png" }, "permissions": [ "tabs", "activeTab" ], "background": { "scripts": [ "background.js" ] }, "commands": { "left": { "suggested_key": { "default": "Alt+Shift+Left" }, "description": "Cycle to left tab." }, "right": { "suggested_key": { "default": "Alt+Shift+Right" }, "description": "Cycle to right tab." } } } |