The Great Tab Suspender
suspend unused/inactive tabs to save memory, and for sure you can recover them
什麼是The Great Tab Suspender?
The Great Tab Suspender是由Mahmoud Zohdi開發的Chrome擴展程式,該擴展的主要功能是“suspend unused/inactive tabs to save memory, and for sure you can recover them”。
擴展截圖
下載The Great Tab Suspender擴展crx文件
下載The Great Tab Suspender擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- 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
擴展基本資訊
名稱 | The Great Tab Suspender |
ID | ocpgloabohpofjmkpjbjdojknkaooend |
官方網址 | https://chromewebstore.google.com/detail/the-great-tab-suspender/ocpgloabohpofjmkpjbjdojknkaooend |
簡介 | suspend unused/inactive tabs to save memory, and for sure you can recover them |
檔案大小 | 15.08 KB |
安裝次數 | 1,503 |
目前版本 | 1.2.1 |
更新時間 | 2021-03-08 |
上架時間 | 2021-03-04 |
評分 | 3.00/5 共 9 次評分 |
開發者 | Mahmoud Zohdi |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } } |