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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "suspend unused/inactive tabs to save memory, and for sure you can recover them"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में The Great Tab Suspender एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}