Squash

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

¿Qué es Squash?

Squash es una extensión de Chrome desarrollada por aayushjoglekar, y su función principal es "Saves and closes all the tabs, and opens up any random window.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Squash

Descarga archivos de extensión Squash 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

                        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.                    

Información Básica de la Extensión

Nombre Squash Squash
ID dopcekjfmhpiigjmijblfpklmicephec
URL Oficial https://chromewebstore.google.com/detail/squash/dopcekjfmhpiigjmijblfpklmicephec
Descripción Saves and closes all the tabs, and opens up any random window.
Tamaño del Archivo 243 KB
Cantidad de Instalaciones 19
Versión Actual 1.1
Última Actualización 2018-02-08
Fecha de Publicación 2018-02-08
Desarrollador aayushjoglekar
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    }
}