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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}