The Great Tab Suspender

suspend unused/inactive tabs to save memory, and for sure you can recover them

The Great Tab Suspender là gì?

The Great Tab Suspender là một tiện ích mở rộng Chrome được phát triển bởi Mahmoud Zohdi, và tính năng chính của nó là "suspend unused/inactive tabs to save memory, and for sure you can recover them".

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

screenshot
screenshot
screenshot

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

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

                        - Any tab is not active for 5min(the default value) will be suspend to save your memory.
- You can recover the suspended tabs by click on the suspend page or by keyboard shortcut (for windows: SHIFT+CTRL+S, for mac: SHIFT+COMMAND+K).
- You can customize the suspending behavior from the extension settings box, you can open the settings box by click on the extension icon                    

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

Tên The Great Tab Suspender The Great Tab Suspender
ID ocpgloabohpofjmkpjbjdojknkaooend
URL Chính Thức https://chromewebstore.google.com/detail/the-great-tab-suspender/ocpgloabohpofjmkpjbjdojknkaooend
Mô tả suspend unused/inactive tabs to save memory, and for sure you can recover them
Kích Thước Tệp 15.08 KB
Số Lần Cài Đặt 1,503
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2021-03-08
Ngày Phát Hành 2021-03-04
Đánh Giá 3.00/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Mahmoud Zohdi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "The Great Tab Suspender",
    "description": "suspend unused\/inactive tabs to save memory, and for sure you can recover them",
    "version": "1.2.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-suspend": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+K"
            },
            "description": "Toggle page suspend"
        }
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}