Keyboard shortcuts to close Chrome tabs

Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones

ما هو Keyboard shortcuts to close Chrome tabs؟

Keyboard shortcuts to close Chrome tabs هو إضافة Chrome تم تطويرها بواسطة https://diophung.com، والميزة الرئيسية لها هي "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Keyboard shortcuts to close Chrome tabs

قم بتنزيل ملفات الامتداد Keyboard shortcuts to close Chrome tabs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? 
This extension will let you do it, and there are more.

You can configure the hotkeys to:
- Close tabs to the left.
- Close tabs to the right.
- Close other tabs.
- Pin/unpin a tab.

Source code available at : https://github.com/diophung/close-chrome-tabs
Please provide your feedback to Twitter: @diophung or email : [email protected].                    

معلومات أساسية عن التمديد

الاسم Keyboard shortcuts to close Chrome tabs Keyboard shortcuts to close Chrome tabs
ID fipfgiejfpcdacpjepkohdlnjonchnal
عنوان URL الرسمي https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal
الوصف Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
حجم الملف 293 KB
عدد التثبيتات 4,928
النسخة الحالية 0.3.0
آخر تحديث 2022-02-07
تاريخ النشر 2018-06-24
تقييم 4.64/5 مجموع تقييمات 25
المطور https://diophung.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/diophung/close-chrome-tabs
عنوان صفحة المساعدة https://diophung.com/chrome-tab-shortcut-privacy-policy/
عنوان صفحة سياسة الخصوصية https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "close-other-tabs-dp": {
            "description": "Close other tabs",
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        },
        "close-left-tabs-dp": {
            "description": "Close tabs to the left",
            "suggested_key": {
                "default": "Alt+Shift+L"
            }
        },
        "close-right-tabs-dp": {
            "description": "Close tabs to the right",
            "suggested_key": {
                "default": "Alt+Shift+R"
            }
        },
        "toggle-pin-dp": {
            "description": "Pin\/unpin Tab",
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones",
    "icons": {
        "128": "images\/tabs_128.png",
        "48": "images\/tabs_48.png"
    },
    "manifest_version": 2,
    "name": "Keyboard shortcuts to close Chrome tabs",
    "short_name": "Shortcuts to close tabs",
    "options_page": "options.html",
    "permissions": [],
    "version": "0.3.0"
}