Tab freezer: tab suspender for faster device

Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!

Tab freezer: tab suspender for faster device là gì?

Tab freezer: tab suspender for faster device là một tiện ích mở rộng Chrome được phát triển bởi https://digit.st, và tính năng chính của nó là "Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab freezer: tab suspender for faster device

Tải xuống các tệp mở rộng Tab freezer: tab suspender for faster device 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

                        Save resources, freeze unused tabs!

Automatically suspend inactive tabs to save up to 90% of your computer's memory and keep it running fast!

Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser, preventing overheating and keeping your device running fast and cool 😉

When you have many open tabs at the same time, your browser needs to keep their data in memory and background scripts are always running. Using Tab Freezer you’ll suspend this tabs so they don’t waste memory, battery or any kind of resources at all.

Is your computer slow and constantly crashing? Avoid all that and increase your productivity working from a faster and more efficient device.

With this extension you’ll be able to reopen suspended tabs with just one click, so you just let them freeze and whenever you need them *click* and you got all your work back without any waste during the process.

It takes an easy and quick install and it will start freezing every new tab opened after the download ;)                    

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

Tên Tab freezer: tab suspender for faster device Tab freezer: tab suspender for faster device
ID diikknkcdngdedlicmnlfkoedlodolon
URL Chính Thức https://chromewebstore.google.com/detail/tab-freezer-tab-suspender/diikknkcdngdedlicmnlfkoedlodolon
Mô tả Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!
Kích Thước Tệp 403 KB
Số Lần Cài Đặt 212
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2021-03-08
Ngày Phát Hành 2021-02-27
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://digit.st
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://digit.st/
URL Trang Trợ Giúp https://digit.st/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab freezer: tab suspender for faster device",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "exclude_globs": [
                "https:\/\/meet.google.com\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js",
                "html2canvas.min.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "Tab Freezer",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}