Memory Saver
Reduce Chrome's memory usage by setting inactive tabs to sleep or system memory is low
Τι είναι το Memory Saver;
Το Memory Saver είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον IeraciSoft, και η κύρια λειτουργία του είναι "Reduce Chrome's memory usage by setting inactive tabs to sleep or system memory is low".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Memory Saver
Λήψη αρχείων επέκτασης Memory Saver σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Lightweight extension that reduces Chrome's memory usage by putting inactive tabs to sleep. Using Chrome's built in tab discarding feature, when a tab is inactive or system memory critically low, the extension discards the background tabs freeing up memory. Once you switch the focus to the sleeping tab, it gets automatically reloaded. Tabs playing audio or video won't be put to sleep. === Main Features=== Tabs are put to sleep when not in use for 10 minutes (the interval can be customized in the settings). Tabs are put to sleep when system memory is low. The extension will set a default low memory threshold depending by the total amount of system memory. This value can be customized. The extension will periodically check the amount of free system memory. This interval is set by default to 5 minutes and can be customized. ========================= CHANGE LOG ============================= v.1.5 : small bug fixes and improvements v.1.4 : Added more settings to control the following: - Enable/disable tab discarding when opening a new tab and the system memory is low - Enable/disable discarding of pinned tabs
Βασικές Πληροφορίες Επέκτασης
Όνομα | Memory Saver |
ID | dhnagkedjknpmhmdoaggchdefbmbeabk |
Επίσημο URL | https://chromewebstore.google.com/detail/memory-saver/dhnagkedjknpmhmdoaggchdefbmbeabk |
Περιγραφή | Reduce Chrome's memory usage by setting inactive tabs to sleep or system memory is low |
Μέγεθος Αρχείου | 12.76 KB |
Αριθμός Εγκαταστάσεων | 10,000 |
Τρέχουσα Έκδοση | 1.5 |
Τελευταία Ενημέρωση | 2022-02-16 |
Ημερομηνία Δημοσίευσης | 2020-07-15 |
Αξιολόγηση | 3.83/5 Συνολικά 18 Αξιολογήσεις |
Προγραμματιστής | IeraciSoft |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Memory Saver", "version": "1.5", "description": "Reduce Chrome's memory usage by setting inactive tabs to sleep or system memory is low", "manifest_version": 2, "permissions": [ "storage", "alarms", "system.memory", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon.png" } }, "icons": { "16": "images\/icon.png", "18": "images\/icon.png", "19": "images\/icon.png", "32": "images\/icon.png", "36": "images\/icon.png", "38": "images\/icon.png", "48": "images\/icon.png", "64": "images\/icon.png", "128": "images\/icon.png", "256": "images\/icon.png" } } |