Tiny Suspender

Unload / suspend / hibernate idle tabs to reduce memory and cpu usage.

什么是Tiny Suspender?

Tiny Suspender是由https://sainsmograf.com开发的Chrome扩展程序,该扩展的主要功能是“Unload / suspend / hibernate idle tabs to reduce memory and cpu usage.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Tiny Suspender扩展crx文件

下载Tiny Suspender扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Unload idle tabs to free your precious memory and cpu resources!

Tiny Suspender will automatically suspend/hibernate background tabs for you, greatly reducing overall system resource usage without you having to take any action. You can set how long to wait before suspending idle tabs and configure a whitelist to exclude certain pages from automatic suspension.

Features:

- Form Detection: Tiny Suspender will try to detect active forms to avoid automatically suspending page with unsubmitted data

- Audio Detection (optional): prevent autosuspending tabs that play music in the background.

- Snooze: Temporarily prevent autosuspension on a specific tab or domain

- Whitelist: Excludes specifics domains, pages, tabs or pinned tabs.

- Keyboard Shortcuts: Suspend tabs without moving your hand away from your keyboard.

- Optionally use Chrome's native tab discard feature to save even more resources when your background tabs get suspended.

- Allow opening links in a new suspended tab

- Dark Mode theme (optional)

Feedback is always welcome!
- Source code and issue tracking are available at https://github.com/arifwn/TinySuspender
- Due to limitation of Chrome Web Store developer portal, extension developers are not automatically notified every time a user leave a feedback to report an issue. Please use email or github issue report ( https://github.com/arifwn/TinySuspender/issues ) if you need fast response.

--------------------------------

Chrome Permissions used in this extension:

- tabs & activeTab: allows various tab suspension/restore features and form detection feature.

- contextMenus: allows adding "suspend tab" menu item and "open link in new suspended tab" in right click context menu.

- storage: allows saving extension configuration

- alarm: allows centralized and more reliable autosuspension timer

- chrome://favicon/* : allows retrieving suspended page's favicon.

--------------------------------

Changelog:

- v2.0.3:
    - Misc. bug fixes

- v2.0.2:
    - Manifest v3 support
    - Added support to temporarily whitelist a domain from suspension
    - Added Incognito Mode support
    - Added context menu option to open links in a new suspended tab
    - Fixed icon update behavior

- v1.3.0:
    - Added dark mode toggle (thanks Abdusco for the pull request on github!)

- v1.2.0:
    - Happy new year!
    - Added an option to skip autosuspension when offline
    - Added support for keyboard shortcuts
    - Tiny Suspender will now try to restore tab scroll position

- v1.1.0:
    - Added option to skip pinned tabs from automatic suspension
    - "Suspend All Tabs" and "Suspend Other Tabs" now will skip whitelisted pages.
    - Added experimental support for Chrome native tab discard feature. Enable it from the settings screen.

- v1.0.1: Minor bugfix

- v1.0.0: We have reached version 1!
    - improved autosuspension timer by using Chrome's alarm api. Requires new permission.
    - UI improvements. Now you can always see tab suspension status from the popup. Status is also reflected as color-coded icon
    - improved form detection.
    - added an option to enable autorestore when a suspended tab is brought to foreground.
    - added an option to prevent autosuspending audible tabs. Useful for online music player.


- v0.1.4: fix a bug in suspension procedure.

- v0.1.3: removed unnecessary permissions.

- v0.1.2: switching away from unloaded page willl trigger automatic suspend timer.

- v0.1.1: fixed bug in whitelisting and auto-suspension feature.                    

扩展基本信息

名称 Tiny Suspender Tiny Suspender
ID bbomjaikkcabgmfaomdichgcodnaeecf
官方URL https://chromewebstore.google.com/detail/tiny-suspender/bbomjaikkcabgmfaomdichgcodnaeecf
简介 Unload / suspend / hibernate idle tabs to reduce memory and cpu usage.
文件大小 35.47 KB
安装次数 10,000
当前版本 2.0.3
更新时间 2023-03-09
上架时间 2017-01-19
评分 4.09/5 共96次评分
开发者 https://sainsmograf.com
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/arifwn/TinySuspender
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tiny Suspender",
    "author": "Arif Widi Nugroho",
    "short_name": "Tiny Suspender",
    "description": "Unload \/ suspend \/ hibernate idle tabs to reduce memory and cpu usage.",
    "version": "2.0.3",
    "options_page": "settings.html",
    "action": {
        "default_title": "Tiny Suspender",
        "default_icon": {
            "16": "img\/icon-16.png",
            "48": "img\/icon-48.png",
            "64": "img\/icon-64.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/core.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "suspend.html",
                "popup.html",
                "settings.html",
                "css\/*",
                "js\/*",
                "img\/*\/*",
                "img\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus",
        "storage",
        "alarms"
    ],
    "incognito": "split",
    "commands": {
        "suspend-active-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Suspend active tab"
        },
        "suspend-all-tabs": {
            "description": "Suspend all tabs"
        },
        "suspend-other-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "Suspend background tabs"
        },
        "restore-active-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Restore active tab"
        },
        "restore-other-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Restore background tabs"
        }
    },
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "64": "img\/icon-64.png",
        "128": "img\/icon-128.png",
        "256": "img\/icon-256.png"
    }
}