Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

Qu'est-ce que Ctrl+W Don't Close Pinned Tabs ?

Ctrl+W Don't Close Pinned Tabs est une extension Chrome développée par Etaoin Wu, et sa fonction principale est "Ctrl+W Don't Close Pinned Tabs".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Ctrl+W Don't Close Pinned Tabs

Téléchargez les fichiers d'extension Ctrl+W Don't Close Pinned Tabs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
URL Officiel https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Description Ctrl+W Don't Close Pinned Tabs
Taille du Fichier 8.5 KB
Nombre d'Installations 139
Version Actuelle 1.0.0
Dernière Mise à Jour 2022-02-14
Date de Publication 2021-05-15
Évaluation 3.67/5 Total 6 Évaluations
Développeur Etaoin Wu
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/EtaoinWu/smart-ctrl-w
Langues Prises en Charge 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"
}