The Great Discarder

Automatically discards unused tabs to free up system resources

The Great Discarder क्या है?

The Great Discarder suspensionlabs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically discards unused tabs to free up system resources"।

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

screenshot

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

crx प्रारूप में The Great Discarder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Suspend tabs to reduce chrome memory usage. Uses chrome's native tab discarding.

Advantages over The Great Suspender:
- More memory savings
- Compatible with chrome tab syncing
- Super lightweight extension that uses no content scripts or persistent background scripts

Disadvantages over The Great Suspender:
- No visibility on which tabs have been suspended
- Unable to prevent a tab from reloading when it gains focus

Please post all bug reports here: https://github.com/deanoemcke/thegreatdiscarder/issues                    

एक्सटेंशन की मूल जानकारी

नाम The Great Discarder The Great Discarder
ID jlipbpadkjcklpeiajndiijbeieicbdh
आधिकारिक URL https://chrome.google.com/webstore/detail/jlipbpadkjcklpeiajndiijbeieicbdh
विवरण Automatically discards unused tabs to free up system resources
फ़ाइल का आकार 235 KB
स्थापना संख्या 35,894
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2017-06-08
प्रकाशन तिथि 2017-06-08
रेटिंग 4.27/5 कुल 133 रेटिंग्स
डेवलपर suspensionlabs
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "The Great Discarder",
    "description": "Automatically discards unused tabs to free up system resources",
    "version": "0.1.2",
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "alarms",
        "system.memory"
    ],
    "background": {
        "scripts": [
            "js\/db.js",
            "js\/storage.js",
            "js\/tabStates.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [],
    "browser_action": {
        "default_title": "The Great Discarder",
        "default_icon": "img\/icon19.png",
        "default_popup": "html\/popup.html"
    },
    "options_page": "html\/options.html",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "incognito": "split",
    "manifest_version": 2,
    "minimum_chrome_version": "54",
    "commands": {
        "1-discard-tab": {
            "description": "Discard active tab",
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            }
        },
        "3-discard-active-window": {
            "description": "Discard all tabs in active window"
        },
        "4-reload-active-window": {
            "description": "Reload all tabs in active window"
        },
        "5-discard-all-windows": {
            "description": "Discard all tabs in all windows"
        },
        "6-reload-all-windows": {
            "description": "Reload all tabs in all windows"
        }
    }
}