Squash

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

Was ist Squash?

Squash ist eine Chrome-Erweiterung, die von aayushjoglekar entwickelt wurde, und ihr Hauptmerkmal ist "Saves and closes all the tabs, and opens up any random window.".

Erweiterungsscreenshots

screenshot

Squash-Erweiterungs-CRX-Datei herunterladen

Laden Sie Squash-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Squash Squash
ID dopcekjfmhpiigjmijblfpklmicephec
Offizielle URL https://chromewebstore.google.com/detail/squash/dopcekjfmhpiigjmijblfpklmicephec
Beschreibung Saves and closes all the tabs, and opens up any random window.
Dateigröße 243 KB
Installationsanzahl 19
Aktuelle Version 1.1
Letztes Update 2018-02-08
Veröffentlichungsdatum 2018-02-08
Entwickler aayushjoglekar
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}