The Great Tab Suspender

suspend unused/inactive tabs to save memory, and for sure you can recover them

O que é The Great Tab Suspender?

The Great Tab Suspender é uma extensão do Chrome desenvolvida por Mahmoud Zohdi, e sua principal característica é "suspend unused/inactive tabs to save memory, and for sure you can recover them".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão The Great Tab Suspender

Baixe arquivos de extensão The Great Tab Suspender no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        - Any tab is not active for 5min(the default value) will be suspend to save your memory.
- You can recover the suspended tabs by click on the suspend page or by keyboard shortcut (for windows: SHIFT+CTRL+S, for mac: SHIFT+COMMAND+K).
- You can customize the suspending behavior from the extension settings box, you can open the settings box by click on the extension icon                    

Informações Básicas da Extensão

Nome The Great Tab Suspender The Great Tab Suspender
ID ocpgloabohpofjmkpjbjdojknkaooend
URL Oficial https://chromewebstore.google.com/detail/the-great-tab-suspender/ocpgloabohpofjmkpjbjdojknkaooend
Descrição suspend unused/inactive tabs to save memory, and for sure you can recover them
Tamanho do Arquivo 15.08 KB
Contagem de Instalações 1,503
Versão Atual 1.2.1
Última Atualização 2021-03-08
Data de Publicação 2021-03-04
Classificação 3.00/5 Total de 9 Avaliações
Desenvolvedor Mahmoud Zohdi
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "The Great Tab Suspender",
    "description": "suspend unused\/inactive tabs to save memory, and for sure you can recover them",
    "version": "1.2.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-suspend": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+K"
            },
            "description": "Toggle page suspend"
        }
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}