Tab Duplicator Shortcut
An extension to do some things with keyboard shortcuts
ما هو Tab Duplicator Shortcut؟
Tab Duplicator Shortcut هو إضافة Chrome تم تطويرها بواسطة Tanner Tracht، والميزة الرئيسية لها هي "An extension to do some things with keyboard shortcuts".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tab Duplicator Shortcut
قم بتنزيل ملفات الامتداد Tab Duplicator Shortcut بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This lightweight extension will add a keyboard shortcut for duplicating your current tab simply press CTRL+SHIFT+Y and the current tab will be instantly duplicated.
معلومات أساسية عن التمديد
الاسم | Tab Duplicator Shortcut |
ID | dbpmgojhkioibaampnbpiiblpdjmkbjc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tab-duplicator-shortcut/dbpmgojhkioibaampnbpiiblpdjmkbjc |
الوصف | An extension to do some things with keyboard shortcuts |
حجم الملف | 11.14 KB |
عدد التثبيتات | 324 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2018-11-12 |
تاريخ النشر | 2018-11-12 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Tanner Tracht |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Duplicator Shortcut", "description": "An extension to do some things with keyboard shortcuts", "version": "1.0.1", "browser_action": { "default_icon": "logo.png", "default_popup": "popup.html", "default_title": "Tab Duplicator" }, "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "commands": { "boom": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Toggle feature foo" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |