Simple Tab Suspender
A simple tab suspender to suspend inactive tabs and stop using your computer resources.
Simple Tab Suspenderคืออะไร?
Simple Tab Suspender เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nurubry29 และคุณลักษณะหลักของมันคือ "A simple tab suspender to suspend inactive tabs and stop using your computer resources."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Tab Suspender
ดาวน์โหลดไฟล์ส่วนขยาย Simple Tab Suspender ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple tab suspender to suspend inactive tabs and stop using your computer resources. Simple Tab Suspender acts as a tab suspender and a tab manager for the google chrome browser. An automation extension that helps you manage your open tabs effectively, making it easy to control the tab count and process usage on your computer. Super helpful for anyone used to opening way too many tabs at once while working or studying online. It will automatically suspend tabs which are not being used by using advanced tab management technology. It suspends tab intelligently according to the time settings you choose. The tabs do not need to appear visible or loaded in order for Simple Tab Suspender to suspend them. Tab suspension occurs as soon as tab is unused for a specific time. So tab suspension does not depend on tab loading status or tab visibility. Simple Tab Suspender comes in help by automatically suspending tabs which are not being used but using advanced technology to do this. Not just by suspending the tabs but by monitoring and listening the tabs that are not being used and intelligently suspending those. With this chrome tab suspender, you have multiple time settings to choose from after which suspension will occur on inactive tabs. It can check all open tabs every 15 min, 30 min, 1hr, 2hr, 3hr, 5hr and 10hrs according to the time setting you choose. The tab suspender is smart enough to know which tab needs to be suspended after your specified time. Depending on tab usage, tabs are suspended. Simple Tab Suspender lets you manage your tabs easily. It helps you get rid of unwanted tabs and keep those that are useful.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | iceofolgiblcopdbdpconajapemjhelm |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/iceofolgiblcopdbdpconajapemjhelm |
คำอธิบาย | A simple tab suspender to suspend inactive tabs and stop using your computer resources. |
ขนาดไฟล์ | 120 KB |
จำนวนการติดตั้ง | 3,207 |
เวอร์ชันปัจจุบัน | 1.7.0 |
อัปเดตครั้งล่าสุด | 2022-07-19 |
วันที่เผยแพร่ | 2021-04-12 |
คะแนน | 4.42/5 รวมทั้งหมด 19 คะแนน |
ผู้พัฒนา | nurubry29 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Tab Suspender", "description": "A simple tab suspender to suspend inactive tabs and stop using your computer resources.", "version": "1.7.0", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "32": "icons\/icon32.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "web_accessible_resources": [ "suspended-page.html" ], "browser_action": { "default_title": "Tab suspender popup", "default_popup": "popup\/popup.html" }, "permissions": [ "storage", "tabs", "activeTab", "webRequest", "webRequestBlocking", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content-scripts\/idle.js" ], "all_frames": true, "run_at": "document_idle" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "content-scripts\/start.js" ], "all_frames": true, "run_at": "document_start" } ] } |