Squash

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

Vad är Squash?

Squash är en Chrome-tillägg utvecklad av aayushjoglekar, och dess huvudfunktion är "Saves and closes all the tabs, and opens up any random window.".

Tilläggsskärmbilder

screenshot

Ladda ner Squash-förlängningens CRX-fil

Ladda ner Squash-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Squash Squash
ID dopcekjfmhpiigjmijblfpklmicephec
Officiell webbadress https://chromewebstore.google.com/detail/squash/dopcekjfmhpiigjmijblfpklmicephec
Beskrivning Saves and closes all the tabs, and opens up any random window.
Filstorlek 243 KB
Antal Installationer 19
Aktuell Version 1.1
Senast Uppdaterad 2018-02-08
Publiceringsdatum 2018-02-08
Utvecklare aayushjoglekar
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    }
}