Squash

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

什麼是Squash?

Squash是由aayushjoglekar開發的Chrome擴展程式,該擴展的主要功能是“Saves and closes all the tabs, and opens up any random window.”。

擴展截圖

screenshot

下載Squash擴展crx文件

下載Squash擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Squash Squash
ID dopcekjfmhpiigjmijblfpklmicephec
官方網址 https://chromewebstore.google.com/detail/squash/dopcekjfmhpiigjmijblfpklmicephec
簡介 Saves and closes all the tabs, and opens up any random window.
檔案大小 243 KB
安裝次數 19
目前版本 1.1
更新時間 2018-02-08
上架時間 2018-02-08
開發者 aayushjoglekar
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        }
    }
}