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?

Tab freezer: tab suspender for faster device是由https://digit.st开发的Chrome扩展程序,该扩展的主要功能是“Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Tab freezer: tab suspender for faster device扩展crx文件

下载Tab freezer: tab suspender for faster device扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 ;)                    

扩展基本信息

名称 Tab freezer: tab suspender for faster device Tab freezer: tab suspender for faster device
ID diikknkcdngdedlicmnlfkoedlodolon
官方URL https://chromewebstore.google.com/detail/tab-freezer-tab-suspender/diikknkcdngdedlicmnlfkoedlodolon
简介 Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!
文件大小 403 KB
安装次数 212
当前版本 1.2
更新时间 2021-03-08
上架时间 2021-02-27
评分 4.00/5 共5次评分
开发者 https://digit.st
电子邮箱 [email protected]
付费类型 free
扩展官网 https://digit.st/
帮助页面URL https://digit.st/
支持的语言 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"
        ]
    }
}