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
官方URL 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"
}