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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mahmoud Zohdi และคุณลักษณะหลักของมันคือ "suspend unused/inactive tabs to save memory, and for sure you can recover them"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย The Great Tab Suspender

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