Squash

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

Squashคืออะไร?

Squash เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aayushjoglekar และคุณลักษณะหลักของมันคือ "Saves and closes all the tabs, and opens up any random window."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Squash

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}