The Great Tab Suspender

suspend unused/inactive tabs to save memory, and for sure you can recover them

The Great Tab Suspenderとは何ですか?

The Great Tab SuspenderはMahmoud Zohdiによって開発されたChromeの拡張機能で、その主な機能は「suspend unused/inactive tabs to save memory, and for sure you can recover them」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

The Great Tab Suspender拡張機能のCRXファイルをダウンロード

The Great Tab Suspender拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        - Any tab is not active for 5min(the default value) will be suspend to save your memory.
- You can recover the suspended tabs by click on the suspend page or by keyboard shortcut (for windows: SHIFT+CTRL+S, for mac: SHIFT+COMMAND+K).
- You can customize the suspending behavior from the extension settings box, you can open the settings box by click on the extension icon                    

拡張機能の基本情報

名前 The Great Tab Suspender The Great Tab Suspender
ID ocpgloabohpofjmkpjbjdojknkaooend
公式URL https://chromewebstore.google.com/detail/the-great-tab-suspender/ocpgloabohpofjmkpjbjdojknkaooend
説明 suspend unused/inactive tabs to save memory, and for sure you can recover them
ファイルサイズ 15.08 KB
インストール数 1,503
現在のバージョン 1.2.1
最終更新日 2021-03-08
公開日 2021-03-04
評価 3.00/5 合計 9 レビュー
開発者 Mahmoud Zohdi
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "The Great Tab Suspender",
    "description": "suspend unused\/inactive tabs to save memory, and for sure you can recover them",
    "version": "1.2.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-suspend": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+K"
            },
            "description": "Toggle page suspend"
        }
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}