Memory Saver

Reduce Chrome's memory usage by setting inactive tabs to sleep or system memory is low

什麼是Memory Saver?

Memory Saver是由IeraciSoft開發的Chrome擴展程式,該擴展的主要功能是“Reduce Chrome's memory usage by setting inactive tabs to sleep or system memory is low”。

擴展截圖

screenshot

下載Memory Saver擴展crx文件

下載Memory Saver擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Lightweight extension that reduces Chrome's memory usage by putting inactive tabs to sleep.

Using Chrome's built in tab discarding feature, when a tab is inactive or system memory critically low, the extension discards the background tabs freeing up memory.

Once you switch the focus to the sleeping tab, it gets automatically reloaded. Tabs playing audio or video won't be put to sleep.

=== Main Features===

Tabs are put to sleep when not in use for 10 minutes (the interval can be customized in the settings). 
 
Tabs are put to sleep when system memory is low. The extension will set a default low memory threshold depending by the total amount of system memory. This value can be customized.

The extension will periodically check the amount of free system memory. This interval is set by default to 5 minutes and can be customized.

========================= CHANGE LOG ============================= v.1.5 : small bug fixes and improvements

v.1.4 : Added more settings to control the following:
             - Enable/disable tab discarding when opening a new tab and the system 
               memory is low
             - Enable/disable discarding of pinned tabs                    

擴展基本資訊

名稱 Memory Saver Memory Saver
ID dhnagkedjknpmhmdoaggchdefbmbeabk
官方網址 https://chromewebstore.google.com/detail/memory-saver/dhnagkedjknpmhmdoaggchdefbmbeabk
簡介 Reduce Chrome's memory usage by setting inactive tabs to sleep or system memory is low
檔案大小 12.76 KB
安裝次數 10,000
目前版本 1.5
更新時間 2022-02-16
上架時間 2020-07-15
評分 3.83/5 共 18 次評分
開發者 IeraciSoft
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Memory Saver",
    "version": "1.5",
    "description": "Reduce Chrome's memory usage by setting inactive tabs to sleep or system memory is low",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "alarms",
        "system.memory",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon.png"
        }
    },
    "icons": {
        "16": "images\/icon.png",
        "18": "images\/icon.png",
        "19": "images\/icon.png",
        "32": "images\/icon.png",
        "36": "images\/icon.png",
        "38": "images\/icon.png",
        "48": "images\/icon.png",
        "64": "images\/icon.png",
        "128": "images\/icon.png",
        "256": "images\/icon.png"
    }
}