Close Other Tabs

Close all OTHER tabs!

Что такое Close Other Tabs?

Close Other Tabs - это расширение Chrome, разработанное Delaney Garcia, и его основная функция - "Close all OTHER tabs!".

Снимки экрана расширения

screenshot
screenshot

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

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

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

                        When chrome phased out the 'close other tabs' functionality, I was bummed... so we made this extension which re-enables that functionality.

When you click the extension icon, it should close all other tabs you have open. It will not close the active tab, nor will it close pinned tabs.

I hope this saves you time like it did for us!                    

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

Название Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
Официальный URL https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Описание Close all OTHER tabs!
Размер файла 17.36 KB
Количество установок 46
Текущая Версия 1.02
Последнее Обновление 2019-11-18
Дата публикации 2019-11-15
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Delaney Garcia
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Other Tabs",
    "description": "Close all OTHER tabs!",
    "version": "1.02",
    "homepage_url": "https:\/\/foobar.com",
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Close OTHER tabs!",
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2
}