Tab Suspender 2.0

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

Τι είναι το Tab Suspender 2.0;

Το Tab Suspender 2.0 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tabhibernation2.0, και η κύρια λειτουργία του είναι "Increase browser speed and reduce memory load when you have numerous open tabs.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tab Suspender 2.0

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

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

                        ⬇️ Easy to set up ⬇️:

1. Download and install the extension.
2. That's it. You don’t have to do anything else.
3. The tabs that have been inactive, will sleep. 💤
4. Press the space key to restore an invisible tab.

✨ Features ✨:

1. Frees memory and CPU storage on the machine by killing all inactive tabs. 
2. Your tabs won't get lost and they can be restored with a single mouse click/space key.

📌 Pin the Tab Suspender 2.0 extension to save you some time from keeping the tabs organized at all times.                    

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

Όνομα Tab Suspender 2.0 Tab Suspender 2.0
ID jiicninagbmmkidaaiibdhcgalpdmomc
Επίσημο URL https://chromewebstore.google.com/detail/tab-suspender-20/jiicninagbmmkidaaiibdhcgalpdmomc
Περιγραφή Increase browser speed and reduce memory load when you have numerous open tabs.
Μέγεθος Αρχείου 327 KB
Αριθμός Εγκαταστάσεων 702
Τρέχουσα Έκδοση 0.6.9
Τελευταία Ενημέρωση 2023-02-20
Ημερομηνία Δημοσίευσης 2022-10-07
Αξιολόγηση 4.50/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής tabhibernation2.0
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες de,en,fr,nl,es,it,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.9",
    "name": "Tab Suspender 2.0",
    "description": "Increase browser speed and reduce memory load when you have numerous open tabs.",
    "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
    },
    "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__"
        },
        "move-previous": {
            "description": "__MSG_cmd_move_previous__"
        },
        "move-next": {
            "description": "__MSG_cmd_move_next__"
        },
        "close": {
            "description": "__MSG_cmd_close__"
        }
    }
}