The Great-er Discarder-er

Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs

¿Qué es The Great-er Discarder-er?

The Great-er Discarder-er es una extensión de Chrome desarrollada por github.com/rkodey, y su función principal es "Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión The Great-er Discarder-er

Descarga archivos de extensión The Great-er Discarder-er en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        New Features

Discard all tabs at startup
Prevents Chrome from loading all your tabs at startup, while preserving the tabs in your last session.

Discard eligible tabs
Same as "Discard other tabs" but observes the current auto-discard settings, like skipping Pinned and Audio tabs.

Link to Chrome Discards page
Adds a link on the context and popup menus to launch the built-in chrome://discards/ page.


Discarding a tab does not close or remove or delete the tab. It's a feature of Chrome that simply frees up resources and memory that the tab is using. Discarding tabs should let Chrome run faster while consuming less memory.

Please post all bug reports here: https://github.com/rkodey/the-great-er-discarder-er/issues

(This is a fork of the abandoned project deanoemcke/thegreatdiscarder.)                    

Información Básica de la Extensión

Nombre The Great-er Discarder-er The Great-er Discarder-er
ID plpkmjcnhhnpkblimgenmdhghfgghdpp
URL Oficial https://chromewebstore.google.com/detail/the-great-er-discarder-er/plpkmjcnhhnpkblimgenmdhghfgghdpp
Descripción Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs
Tamaño del Archivo 210 KB
Cantidad de Instalaciones 3,538
Versión Actual 0.2.1
Última Actualización 2021-10-31
Fecha de Publicación 2021-02-12
Calificación 4.73/5 Total de 15 Calificaciones
Desarrollador github.com/rkodey
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/rkodey/the-great-er-discarder-er
URL de la Página de Ayuda https://github.com/rkodey/the-great-er-discarder-er/issues
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "The Great-er Discarder-er",
    "description": "Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs",
    "version": "0.2.1",
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "alarms"
    ],
    "background": {
        "scripts": [
            "js\/db.js",
            "js\/storage.js",
            "js\/tabStates.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [],
    "browser_action": {
        "default_title": "The Great-er Discarder-er",
        "default_icon": "img\/icon19.png",
        "default_popup": "html\/popup.html"
    },
    "options_page": "html\/options.html",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "incognito": "split",
    "minimum_chrome_version": "54",
    "commands": {
        "1-discard-tab": {
            "description": "Discard active tab",
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            }
        },
        "3-discard-active-window": {
            "description": "Discard all tabs in active window"
        },
        "4-reload-active-window": {
            "description": "Reload all tabs in active window"
        },
        "5-discard-all-windows": {
            "description": "Discard all tabs in all windows"
        },
        "6-reload-all-windows": {
            "description": "Reload all tabs in all windows"
        }
    }
}