Auto Tab Discard (suspend)

Increase browser speed and reduce memory load when you have numerous open tabs.

Τι είναι το Auto Tab Discard (suspend);

Το Auto Tab Discard (suspend) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον joue.quroi, και η κύρια λειτουργία του είναι "Increase browser speed and reduce memory load when you have numerous open tabs.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Auto Tab Discard (suspend)

Λήψη αρχείων επέκτασης Auto Tab Discard (suspend) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        "Auto Tab Discard" is a lightweight browser extension that automatically reduces the amount of memory used by open but inactive tabs, helping to conserve battery life on portable devices by disabling JavaScript code and DOM events on discarded tabs.

Preview:

https://www.youtube.com/watch?v=ityhxUPp3y8

Instruction:

There are two options on the extension's interface to either discard tabs or release discarding (the "x" buttons)


The features of "Auto Tab Discard" are:

  * Improves browser performance and reduces memory usage by automatically or manually discarding inactive, idle, or forgotten tabs.
  * Includes a list of hostnames or regular expressions that can be excluded from auto-discarding.
  * Preserves the discarded state of tabs when the browser is closed and reopened.
  * Indicates the discarded state of a tab through the favicon or title.
  * Restores the state of a tab, including scroll position and text box content, after it is released from being discarded.
  * Allows for the forced discarding of specified hostnames.


The options for configuring whether tabs should be discarded or not include:

  * Pinned tabs
  * Tabs that are playing media
  * The presence of a power source
  * Unsaved content or user input in a tab

The available plugins for "Auto Tab Discard" are:

  * Release the discarded state of the next or previous tab.
  * Release the discarded state of all tabs in the active window.
  * Automatically discard all newly opened inactive tabs.
  * Store YouTube's timestamp before a tab is discarded.
  * Permanently delete (remove) old discarded tabs that are inactive.

Notes:

  * Unlike the "The Great Suspender" extension, this extension uses the native method for discarding tabs, which means that even if the extension is removed or the browser crashes, your browser will automatically restore everything for you.

Privacy Policy:

https://webextension.org/privacy-policy/extension/tab-discard.html                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Auto Tab Discard (suspend) Auto Tab Discard (suspend)
ID jhnleheckmknfcgijgkadoemagpecfol
Επίσημο URL https://chromewebstore.google.com/detail/auto-tab-discard-suspend/jhnleheckmknfcgijgkadoemagpecfol
Περιγραφή Increase browser speed and reduce memory load when you have numerous open tabs.
Μέγεθος Αρχείου 167 KB
Αριθμός Εγκαταστάσεων 138,855
Τρέχουσα Έκδοση 0.6.8.2
Τελευταία Ενημέρωση 2024-02-17
Ημερομηνία Δημοσίευσης 2020-06-24
Αξιολόγηση 4.13/5 Συνολικά 258 Αξιολογήσεις
Προγραμματιστής joue.quroi
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/tab-discard.html
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/tab-discard.html
Υποστηριζόμενες Γλώσσες de,en,fr,nl,es,it,hu,pt-BR,sv,ru,uk,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.6.8.2",
    "name": "Auto Tab Discard (suspend)",
    "description": "__MSG_app_description__",
    "default_locale": "en",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "permissions": [
        "idle",
        "storage",
        "contextMenus",
        "notifications",
        "alarms",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker\/core.mjs",
        "type": "module"
    },
    "content_scripts": [
        {
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "js": [
                "\/data\/inject\/watch.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "action": {
        "default_popup": "\/data\/popup\/index.html"
    },
    "options_ui": {
        "page": "\/data\/options\/index.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/tab-discard.html",
    "commands": {
        "_execute_action": [],
        "discard-tab": {
            "description": "__MSG_cmd_discard_tab__"
        },
        "discard-tree": {
            "description": "__MSG_cmd_discard_tree__"
        },
        "discard-window": {
            "description": "__MSG_cmd_discard_window__"
        },
        "discard-other-windows": {
            "description": "__MSG_cmd_discard_other_windows__"
        },
        "discard-tabs": {
            "description": "__MSG_cmd_discard_tabs__"
        },
        "discard-rights": {
            "description": "__MSG_cmd_discard_rights__"
        },
        "discard-lefts": {
            "description": "__MSG_cmd_discard_lefts__"
        },
        "move-previous": {
            "description": "__MSG_cmd_move_previous__"
        },
        "move-next": {
            "description": "__MSG_cmd_move_next__"
        },
        "close": {
            "description": "__MSG_cmd_close__"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/page.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}