Tiny Suspender

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

Cos'è Tiny Suspender?

Tiny Suspender è un'estensione di Chrome sviluppata da https://sainsmograf.com, e la sua funzione principale è "Unload / suspend / hibernate idle tabs to reduce memory and cpu usage.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Tiny Suspender

Scarica i file di estensione Tiny Suspender in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Tiny Suspender Tiny Suspender
ID bbomjaikkcabgmfaomdichgcodnaeecf
URL Ufficiale https://chromewebstore.google.com/detail/tiny-suspender/bbomjaikkcabgmfaomdichgcodnaeecf
Descrizione Unload / suspend / hibernate idle tabs to reduce memory and cpu usage.
Dimensione del File 35.47 KB
Conteggio Installazioni 10,000
Versione Corrente 2.0.3
Ultimo Aggiornamento 2023-03-09
Data di Pubblicazione 2017-01-19
Valutazione 4.09/5 Totale 96 Valutazioni
Sviluppatore https://sainsmograf.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/arifwn/TinySuspender
Lingue Supportate 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"
    }
}