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

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

확장 프로그램 사용 설명서

                        - 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
이메일 [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"
    }
}