Close All Tabs On Left

Closes all tabs on the left of current tab

Что такое Close All Tabs On Left?

Close All Tabs On Left - это расширение Chrome, разработанное Unknown, и его основная функция - "Closes all tabs on the left of current tab".

Скачать файл CRX расширения Close All Tabs On Left

Скачайте файлы расширений Close All Tabs On Left в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.                    

Основная информация о расширении

Название Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
Официальный URL https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Описание Closes all tabs on the left of current tab
Размер файла 6.72 KB
Количество установок 1,286
Текущая Версия 1.2
Последнее Обновление 2018-04-20
Дата публикации 2018-04-20
Рейтинг 5.00/5 Всего 8 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close All Tabs On Left",
    "description": "Closes all tabs on the left of current tab",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "close-all-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "Close all tabs on the left of current tab"
        }
    },
    "permissions": [
        "tabs"
    ]
}