Lock Tab

Prevents a tab from being closed accidentally

Lock Tab là gì?

Lock Tab là một tiện ích mở rộng Chrome được phát triển bởi gabomaldi, và tính năng chính của nó là "Prevents a tab from being closed accidentally".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lock Tab

Tải xuống các tệp mở rộng Lock Tab 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

                        Adds a padlock icon that allows toggling each tab's lock/unlocked state. When a locked tab is being closed, a confirmation dialog which allows preventing the tab from closing, is displayed.

📣 IMPORTANT: after locking, some interaction with the page is required for it to work. So you need to, for example, click anywhere on the page after locking to actually prevent the tab from being closed. This is how Chrome works.                    

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

Tên Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
URL Chính Thức https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
Mô tả Prevents a tab from being closed accidentally
Kích Thước Tệp 43.5 KB
Số Lần Cài Đặt 6,094
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2024-01-15
Ngày Phát Hành 2022-06-24
Đánh Giá 3.50/5 Tổng số 30 Đánh Giá
Nhà Phát Triển gabomaldi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gabrielmaldi/chrome-lock-tab
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lock Tab",
    "description": "Prevents a tab from being closed accidentally",
    "version": "1.2.1",
    "author": "gabrielmaldi",
    "homepage_url": "https:\/\/github.com\/gabrielmaldi\/chrome-lock-tab",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "images\/unlocked-light.png"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": [],
    "options_page": "src\/options.html"
}