Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

What is Ctrl+W Don't Close Pinned Tabs?

Ctrl+W Don't Close Pinned Tabs is a Chrome extension developed by Etaoin Wu, and its main feature is "Ctrl+W Don't Close Pinned Tabs".

Extension Screenshots

screenshot

Download Ctrl+W Don't Close Pinned Tabs Extension CRX File

Download Ctrl+W Don't Close Pinned Tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
Official URL https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Description Ctrl+W Don't Close Pinned Tabs
File Size 8.5 KB
Installation Count 139
Current Version 1.0.0
Last Updated 2022-02-14
Publish Date 2021-05-15
Rating 3.67/5 Total 6 Ratings
Developer Etaoin Wu
Email [email protected]
Payment Type free
Extension Website https://github.com/EtaoinWu/smart-ctrl-w
Supported Languages 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"
}