TabMemFree
Lower RAM and CPU load by unloading idle tabs
TabMemFreeคืออะไร?
TabMemFree เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vitaliy Meshchaninov และคุณลักษณะหลักของมันคือ "Lower RAM and CPU load by unloading idle tabs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TabMemFree
ดาวน์โหลดไฟล์ส่วนขยาย TabMemFree ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
=== Features === Automatically unload idle tabs, while keeping their title and icon. Click extension icon to activate/deactivate it. Options to tweak maximum tab idle time and check frequency, and prevent pinned tabs unload. === Known risks === You may lose forms data when a tab gets parked. === User Data Policy === Extension preferences are saved locally and managed by Chrome. No personal user data is collected. === Recent changes === 0.3.1 Fix settings page not loading 0.3.0 Use Chrome Extension Storage API for settings Attempt to fix settings page 0.2.2 Fix missing options page 0.2.1 Fix missing options page Bump minimum Chrome version 0.2.0 Use new Chrome api to park tabs No more access to personal data, like tabs url, favicon No more injected script 0.1.4 Fix bugs, refactor for better performance, add icon tooltip 0.1.3.3 Migrate to Manifest V2 0.1.3.2 Tab title and icon saved via url hash to preserve user privacy Better title handling 0.1.3.1 Park tabs to a Google tabmemfree.appspot.com server 0.1.3 Tab icon saved after tab parking Option to prevent parking of pinned tabs Parking to outer page to prevent tab loss on extension remove 0.1.2 Tab title saved after tab parking Timeout between 15 minutes and 24 hours Multiple windows support
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TabMemFree |
ID | pdanbocphccpmidkhloklnlfplehiikb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tabmemfree/pdanbocphccpmidkhloklnlfplehiikb |
คำอธิบาย | Lower RAM and CPU load by unloading idle tabs |
ขนาดไฟล์ | 234 KB |
จำนวนการติดตั้ง | 56,186 |
เวอร์ชันปัจจุบัน | 0.3.1 |
อัปเดตครั้งล่าสุด | 2023-08-29 |
วันที่เผยแพร่ | 2020-03-08 |
คะแนน | 3.70/5 รวมทั้งหมด 168 คะแนน |
ผู้พัฒนา | Vitaliy Meshchaninov |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/glukki/TabMemFree |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "version": "0.3.1", "default_locale": "en", "description": "__MSG_description__", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon19.png" }, "default_title": "__MSG_title__" }, "author": "__MSG_author__", "background": { "scripts": [ "background.js" ] }, "incognito": "split", "minimum_chrome_version": "54", "offline_enabled": true, "options_page": "fancy-settings\/source\/index.html", "permissions": [ "storage" ] } |