Squash

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

Squash là gì?

Squash là một tiện ích mở rộng Chrome được phát triển bởi aayushjoglekar, và tính năng chính của nó là "Saves and closes all the tabs, and opens up any random window.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Squash

Tải xuống các tệp mở rộng Squash dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Squash Squash
ID dopcekjfmhpiigjmijblfpklmicephec
URL Chính Thức https://chromewebstore.google.com/detail/squash/dopcekjfmhpiigjmijblfpklmicephec
Mô tả Saves and closes all the tabs, and opens up any random window.
Kích Thước Tệp 243 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-02-08
Ngày Phát Hành 2018-02-08
Nhà Phát Triển aayushjoglekar
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}