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
Eメール [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"
        }
    }
}