Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs là gì?

Ctrl+W Don't Close Pinned Tabs là một tiện ích mở rộng Chrome được phát triển bởi Etaoin Wu, và tính năng chính của nó là "Ctrl+W Don't Close Pinned Tabs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ctrl+W Don't Close Pinned Tabs

Tải xuống các tệp mở rộng Ctrl+W Don't Close Pinned Tabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
URL Chính Thức https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Mô tả Ctrl+W Don't Close Pinned Tabs
Kích Thước Tệp 8.5 KB
Số Lần Cài Đặt 139
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-02-14
Ngày Phát Hành 2021-05-15
Đánh Giá 3.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Etaoin Wu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/EtaoinWu/smart-ctrl-w
Ngôn Ngữ Được Hỗ Trợ 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"
}