The Great Discarder

Automatically discards unused tabs to free up system resources

The Great Discarder là gì?

The Great Discarder là một tiện ích mở rộng Chrome được phát triển bởi suspensionlabs, và tính năng chính của nó là "Automatically discards unused tabs to free up system resources".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng The Great Discarder

Tải xuống các tệp mở rộng The Great Discarder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên The Great Discarder The Great Discarder
ID jlipbpadkjcklpeiajndiijbeieicbdh
URL Chính Thức https://chrome.google.com/webstore/detail/jlipbpadkjcklpeiajndiijbeieicbdh
Mô tả Automatically discards unused tabs to free up system resources
Kích Thước Tệp 235 KB
Số Lần Cài Đặt 35,894
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2017-06-08
Ngày Phát Hành 2017-06-08
Đánh Giá 4.27/5 Tổng số 133 Đánh Giá
Nhà Phát Triển suspensionlabs
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}