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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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