Tab Suspender

Tab Suspender suspends tabs which are in background for long periods, to reduce RAM usage.

What is Tab Suspender?

Tab Suspender is a Chrome extension developed by Multivariate AI Solution, and its main feature is "Tab Suspender suspends tabs which are in background for long periods, to reduce RAM usage.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Tab Suspender Extension CRX File

Download Tab Suspender extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Use Tab Suspender to suspend tabs which are in background for more than certain time.
Tab Suspender helps users Increase their device performance.                    

Extension Basic Information

Name Tab Suspender Tab Suspender
ID goflchmdpidhhepjfpdmjoklebbjggje
Official URL https://chromewebstore.google.com/detail/tab-suspender/goflchmdpidhhepjfpdmjoklebbjggje
Description Tab Suspender suspends tabs which are in background for long periods, to reduce RAM usage.
File Size 102 KB
Installation Count 311
Current Version 0.3.12
Last Updated 2022-10-16
Publish Date 2021-09-03
Rating 4.62/5 Total 21 Ratings
Developer Multivariate AI Solution
Email [email protected]
Payment Type free
Extension Website https://multivariate.tech/
Help Page URL https://multivariate.tech/
Privacy Policy Page URL https://multivariate.tech/privacy-policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Suspender",
    "version": "0.3.12",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlIY2Pa0bjJANKRYICng81K\/bXJXnHkv+9SUXfRJCE4mUW5nLBAGS9Sk6HgOlR3ijah80vVqps\/0EKdI+L0JfcnBtEEfrs+a2G92TlLfh7kPwJ\/vqdVXWH6bLzUEAbJQh36zoBa0iNBjW3XrbC6rwMFptk20Pvj6NTpCefVpIVhx1g2B3ZGQcVXzsoFoQJeS4VuEhnpWvZR56D1UF3ySLS1pRA9Awr8V1ka\/sXtZIuUMJmF17\/WwuyShuBbQODJX7ggK8iVBwlm359cHw0IKN40YgniBIFwlIMjkRxNSv8EWydFtykxF4rBxUZtdMdZOCMR9gMZ5yH5P0leseZor8dQIDAQAB",
    "oauth2": {
        "client_id": "179232417308-pqbequbvcogi82tnu39rcqnfgsa41j30.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/spreadsheets"
        ]
    },
    "description": "Tab Suspender suspends tabs which are in background for long periods, to reduce RAM usage.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Tab_suspender",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/sheets.googleapis.com\/v4\/spreadsheets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "suspend.html",
                "suspend.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}