The Great-er Discarder-er

Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs

什麼是The Great-er Discarder-er?

The Great-er Discarder-er是由github.com/rkodey開發的Chrome擴展程式,該擴展的主要功能是“Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs”。

擴展截圖

screenshot

下載The Great-er Discarder-er擴展crx文件

下載The Great-er Discarder-er擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        New Features

Discard all tabs at startup
Prevents Chrome from loading all your tabs at startup, while preserving the tabs in your last session.

Discard eligible tabs
Same as "Discard other tabs" but observes the current auto-discard settings, like skipping Pinned and Audio tabs.

Link to Chrome Discards page
Adds a link on the context and popup menus to launch the built-in chrome://discards/ page.


Discarding a tab does not close or remove or delete the tab. It's a feature of Chrome that simply frees up resources and memory that the tab is using. Discarding tabs should let Chrome run faster while consuming less memory.

Please post all bug reports here: https://github.com/rkodey/the-great-er-discarder-er/issues

(This is a fork of the abandoned project deanoemcke/thegreatdiscarder.)                    

擴展基本資訊

名稱 The Great-er Discarder-er The Great-er Discarder-er
ID plpkmjcnhhnpkblimgenmdhghfgghdpp
官方網址 https://chromewebstore.google.com/detail/the-great-er-discarder-er/plpkmjcnhhnpkblimgenmdhghfgghdpp
簡介 Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs
檔案大小 210 KB
安裝次數 3,538
目前版本 0.2.1
更新時間 2021-10-31
上架時間 2021-02-12
評分 4.73/5 共 15 次評分
開發者 github.com/rkodey
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/rkodey/the-great-er-discarder-er
說明頁面URL https://github.com/rkodey/the-great-er-discarder-er/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "The Great-er Discarder-er",
    "description": "Helps Chrome run faster by freeing up memory and system resources being used by inactive tabs or old tabs",
    "version": "0.2.1",
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "alarms"
    ],
    "background": {
        "scripts": [
            "js\/db.js",
            "js\/storage.js",
            "js\/tabStates.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [],
    "browser_action": {
        "default_title": "The Great-er Discarder-er",
        "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"
    },
    "incognito": "split",
    "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"
        }
    }
}