Squash

Saves and closes all the tabs, and opens up any random window.

O que é Squash?

Squash é uma extensão do Chrome desenvolvida por aayushjoglekar, e sua principal característica é "Saves and closes all the tabs, and opens up any random window.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Squash

Baixe arquivos de extensão Squash 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

                        Squash is a chrome extension which serves as a panic button. It will close all the tabs in the current window, save the URLs and open a set of predefined URLs by the user. The saved URLs can be restored later.

Incase the shortcuts are not working, go to chrome://extensions and enable the extension. This is done by chrome for safety purposes.                    

Informações Básicas da Extensão

Nome Squash Squash
ID dopcekjfmhpiigjmijblfpklmicephec
URL Oficial https://chromewebstore.google.com/detail/squash/dopcekjfmhpiigjmijblfpklmicephec
Descrição Saves and closes all the tabs, and opens up any random window.
Tamanho do Arquivo 243 KB
Contagem de Instalações 19
Versão Atual 1.1
Última Atualização 2018-02-08
Data de Publicação 2018-02-08
Desenvolvedor aayushjoglekar
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Squash",
    "version": "1.1",
    "description": "Saves and closes all the tabs, and opens up any random window.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.jpg",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "Browser action"
        },
        "squash_tabs": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Squash All The Tabs"
        },
        "restore_tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            },
            "description": "Restore All The Tabs"
        }
    }
}