Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

O que é Ctrl+W Don't Close Pinned Tabs?

Ctrl+W Don't Close Pinned Tabs é uma extensão do Chrome desenvolvida por Etaoin Wu, e sua principal característica é "Ctrl+W Don't Close Pinned Tabs".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Ctrl+W Don't Close Pinned Tabs

Baixe arquivos de extensão Ctrl+W Don't Close Pinned Tabs no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
URL Oficial https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Descrição Ctrl+W Don't Close Pinned Tabs
Tamanho do Arquivo 8.5 KB
Contagem de Instalações 139
Versão Atual 1.0.0
Última Atualização 2022-02-14
Data de Publicação 2021-05-15
Classificação 3.67/5 Total de 6 Avaliações
Desenvolvedor Etaoin Wu
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/EtaoinWu/smart-ctrl-w
Idiomas Suportados 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"
}