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
Eメール [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"
}