Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

Что такое Ctrl+W Don't Close Pinned Tabs?

Ctrl+W Don't Close Pinned Tabs - это расширение Chrome, разработанное Etaoin Wu, и его основная функция - "Ctrl+W Don't Close Pinned Tabs".

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

screenshot

Скачать файл CRX расширения Ctrl+W Don't Close Pinned Tabs

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

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

                        This Chrome extension simulates Firefox's behavior on the hotkey Ctrl-W on a pinned tab; it does NOT close the tab. Instead, it navigate to the first non-pinned tab.

Usage: You need to *explicitly* bind the key to ctrl-W in "Keyboard Shortcuts" in chrome://extensions/ to use the functionality (as in the screenshot). This is not possible to do automatically.

Source: https://github.com/EtaoinWu/smart-ctrl-w                    

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

Название Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
Официальный URL https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Описание Ctrl+W Don't Close Pinned Tabs
Размер файла 8.5 KB
Количество установок 139
Текущая Версия 1.0.0
Последнее Обновление 2022-02-14
Дата публикации 2021-05-15
Рейтинг 3.67/5 Всего 6 оценок
Разработчик Etaoin Wu
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/EtaoinWu/smart-ctrl-w
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ctrl+W Don't Close Pinned Tabs",
    "version": "1.0.0",
    "description": "Ctrl+W Don't Close Pinned Tabs",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Etaoin Wu ",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "smart-ctrl-w": {
            "suggested_key": {
                "default": "Ctrl+W",
                "mac": "Command+W"
            },
            "description": "Close This Tab (Bind to Ctrl+W)"
        }
    },
    "minimum_chrome_version": "33"
}