Close Tab Shortcut
Customize chrome shortcut to close current tab
ما هو Close Tab Shortcut؟
Close Tab Shortcut هو إضافة Chrome تم تطويرها بواسطة Stanley Guevara، والميزة الرئيسية لها هي "Customize chrome shortcut to close current tab".
تحميل ملف CRX للإضافة Close Tab Shortcut
قم بتنزيل ملفات الامتداد Close Tab Shortcut بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Simple extension for closing active tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | oohndijkoieelbpmfehjecdihiiaecgb |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/oohndijkoieelbpmfehjecdihiiaecgb |
الوصف | Customize chrome shortcut to close current tab |
حجم الملف | 3.21 KB |
عدد التثبيتات | 11 |
النسخة الحالية | 1.0 |
آخر تحديث | 2016-10-16 |
تاريخ النشر | 2016-10-16 |
المطور | Stanley Guevara |
نوع الدفع | free |
موقع الإضافة | https://github.com/stanleyguevara/chrome-close-tab-shortcut |
عنوان صفحة المساعدة | https://github.com/stanleyguevara/chrome-close-tab-shortcut |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Close Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to close current tab", "commands": { "close-tab": { "suggested_key": { "default": "Alt+X", "mac": "Ctrl+X" }, "description": "Close current tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |