FreeTabMemory

Make your computer run smoothly by suspending the tabs you aren't using

Vad är FreeTabMemory?

FreeTabMemory är en Chrome-tillägg utvecklad av https://freetabmemory.online, och dess huvudfunktion är "Make your computer run smoothly by suspending the tabs you aren't using".

Tilläggsskärmbilder

screenshot

Ladda ner FreeTabMemory-förlängningens CRX-fil

Ladda ner FreeTabMemory-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Make your computer run smoothly by suspending the tabs you aren't using
A lightweight extension to reduce chrome's memory footprint. Perfect if you have a lot of tabs open at the same time. Tabs that have not been viewed after a configurable length of time will be automagically suspended in the background, freeing up the memory and CPU being consumed by that tab.

- Whitelist specific urls or domains that you do not want to suspend
- Optionally show screen capture of tab before it was suspended
- Vastly improves performance when restarting chrome with a large number of open tabs
- Detects tabs playing audio and can prevent them from suspending
- Detects tabs that contain forms with user input and can prevent them from suspending
- Configurable behavior when browsing offline or on battery power
- Built from open source code for full transparency

ABOUT PERMISSIONS
This extension requests the following permissions:
- Read and change all your data on the websites that you visit. This is necessary to detect tabs that contain unsaved form input. This enables the extension to prevent these tabs from suspending automatically.
- Read and change your browsing history. This is necessary to keep the extension from creating redundant items in the users history when suspending tabs.

Privacy Policy:
https://freetabmemory.online/privacy.html                    

Grundläggande Information om Tillägg

Namn FreeTabMemory FreeTabMemory
ID ehbifmnhnghckaobolojbabkagnhjajm
Officiell webbadress https://chromewebstore.google.com/detail/freetabmemory/ehbifmnhnghckaobolojbabkagnhjajm
Beskrivning Make your computer run smoothly by suspending the tabs you aren't using
Filstorlek 327 KB
Antal Installationer 20,000
Aktuell Version 1.2.2.1
Senast Uppdaterad 2022-12-19
Publiceringsdatum 2019-03-08
Betyg 3.71/5 Totalt 28 Betyg
Utvecklare https://freetabmemory.online
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://freetabmemory.online
URL till Sekretesspolicy Sidan https://findmanual.org/privacy.html
Stödda Språk en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ext_extension_name__",
    "description": "__MSG_ext_extension_description__",
    "version": "1.2.2.1",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "storage",
        "history",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*",
        "chrome:\/\/favicon\/*",
        "contextMenus",
        "cookies",
        "webRequest",
        "webRequestBlocking",
        "gcm"
    ],
    "background": {
        "scripts": [
            "js\/gsUtils.js",
            "js\/gsChrome.js",
            "js\/gsAnalytics.js",
            "js\/gsStorage.js",
            "js\/db.js",
            "js\/gsIndexedDb.js",
            "js\/gsMessages.js",
            "js\/gsSession.js",
            "js\/gsTabQueue.js",
            "js\/gsTabCheckManager.js",
            "js\/gsFavicon.js",
            "js\/gsTabSuspendManager.js",
            "js\/gsTabDiscardManager.js",
            "js\/gsSuspendedTab.js",
            "js\/thankyou.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "__MSG_ext_default_title__",
        "default_icon": {
            "16": "img\/ic_suspendy_16x16.png",
            "32": "img\/ic_suspendy_32x32.png"
        },
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "img\/ic_suspendy_16x16.png",
        "32": "img\/ic_suspendy_32x32.png",
        "48": "img\/ic_suspendy_48x48.png",
        "128": "img\/ic_suspendy_128x128.png"
    },
    "web_accessible_resources": [
        "suspended.html",
        "img\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "incognito": "split",
    "manifest_version": 2,
    "minimum_chrome_version": "55",
    "commands": {
        "1-suspend-tab": {
            "description": "__MSG_ext_cmd_toggle_tab_suspension_description__",
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            }
        },
        "2-toggle-temp-whitelist-tab": {
            "description": "__MSG_ext_cmd_toggle_tab_pause_description__"
        },
        "2a-suspend-selected-tabs": {
            "description": "__MSG_ext_cmd_suspend_selected_tabs_description__"
        },
        "2b-unsuspend-selected-tabs": {
            "description": "__MSG_ext_cmd_unsuspend_selected_tabs_description__"
        },
        "3-suspend-active-window": {
            "description": "__MSG_ext_cmd_soft_suspend_active_window_description__"
        },
        "3b-force-suspend-active-window": {
            "description": "__MSG_ext_cmd_force_suspend_active_window_description__"
        },
        "4-unsuspend-active-window": {
            "description": "__MSG_ext_cmd_unsuspend_active_window_description__"
        },
        "4b-soft-suspend-all-windows": {
            "description": "__MSG_ext_cmd_soft_suspend_all_windows_description__"
        },
        "5-suspend-all-windows": {
            "description": "__MSG_ext_cmd_force_suspend_all_windows_description__"
        },
        "6-unsuspend-all-windows": {
            "description": "__MSG_ext_cmd_unsuspend_all_windows_description__"
        }
    }
}