Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

Vad är Ctrl+W Don't Close Pinned Tabs?

Ctrl+W Don't Close Pinned Tabs är en Chrome-tillägg utvecklad av Etaoin Wu, och dess huvudfunktion är "Ctrl+W Don't Close Pinned Tabs".

Tilläggsskärmbilder

screenshot

Ladda ner Ctrl+W Don't Close Pinned Tabs-förlängningens CRX-fil

Ladda ner Ctrl+W Don't Close Pinned Tabs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
Officiell webbadress https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Beskrivning Ctrl+W Don't Close Pinned Tabs
Filstorlek 8.5 KB
Antal Installationer 139
Aktuell Version 1.0.0
Senast Uppdaterad 2022-02-14
Publiceringsdatum 2021-05-15
Betyg 3.67/5 Totalt 6 Betyg
Utvecklare Etaoin Wu
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/EtaoinWu/smart-ctrl-w
Stödda Språk 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"
}