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”。
扩展截图
下载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 |
ID | dhnagkedjknpmhmdoaggchdefbmbeabk |
官方URL | 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" } } |