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是由Etaoin Wu開發的Chrome擴展程式,該擴展的主要功能是“Ctrl+W Don't Close Pinned Tabs”。

擴展截圖

screenshot

下載Ctrl+W Don't Close Pinned Tabs擴展crx文件

下載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
官方網址 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"
}