The Great Tab Suspender
suspend unused/inactive tabs to save memory, and for sure you can recover them
Qu'est-ce que The Great Tab Suspender ?
The Great Tab Suspender est une extension Chrome développée par Mahmoud Zohdi, et sa fonction principale est "suspend unused/inactive tabs to save memory, and for sure you can recover them".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension The Great Tab Suspender
Téléchargez les fichiers d'extension The Great Tab Suspender au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
- Any tab is not active for 5min(the default value) will be suspend to save your memory. - You can recover the suspended tabs by click on the suspend page or by keyboard shortcut (for windows: SHIFT+CTRL+S, for mac: SHIFT+COMMAND+K). - You can customize the suspending behavior from the extension settings box, you can open the settings box by click on the extension icon
Informations de Base sur l'Extension
Nom | The Great Tab Suspender |
ID | ocpgloabohpofjmkpjbjdojknkaooend |
URL Officiel | https://chromewebstore.google.com/detail/the-great-tab-suspender/ocpgloabohpofjmkpjbjdojknkaooend |
Description | suspend unused/inactive tabs to save memory, and for sure you can recover them |
Taille du Fichier | 15.08 KB |
Nombre d'Installations | 1,503 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2021-03-08 |
Date de Publication | 2021-03-04 |
Évaluation | 3.00/5 Total 9 Évaluations |
Développeur | Mahmoud Zohdi |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "The Great Tab Suspender", "description": "suspend unused\/inactive tabs to save memory, and for sure you can recover them", "version": "1.2.1", "manifest_version": 2, "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "toggle-suspend": { "suggested_key": { "default": "Ctrl+Shift+S", "windows": "Ctrl+Shift+S", "mac": "Command+Shift+K" }, "description": "Toggle page suspend" } }, "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |