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
官方URL 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"
        }
    }
}