Squash

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

Cos'è Squash?

Squash è un'estensione di Chrome sviluppata da aayushjoglekar, e la sua funzione principale è "Saves and closes all the tabs, and opens up any random window.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Squash

Scarica i file di estensione Squash in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Squash Squash
ID dopcekjfmhpiigjmijblfpklmicephec
URL Ufficiale https://chromewebstore.google.com/detail/squash/dopcekjfmhpiigjmijblfpklmicephec
Descrizione Saves and closes all the tabs, and opens up any random window.
Dimensione del File 243 KB
Conteggio Installazioni 19
Versione Corrente 1.1
Ultimo Aggiornamento 2018-02-08
Data di Pubblicazione 2018-02-08
Sviluppatore aayushjoglekar
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    }
}