Memory Monitor
Monitor system memory usage
Memory Monitorคืออะไร?
Memory Monitor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dan.belz69 และคุณลักษณะหลักของมันคือ "Monitor system memory usage"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Memory Monitor
ดาวน์โหลดไฟล์ส่วนขยาย Memory Monitor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Press "Alt+Shift+M" to toggle displaying the system memory monitor
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | djibnebekkebpogajfdjnhdhmehebooh |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/memory-monitor/djibnebekkebpogajfdjnhdhmehebooh |
คำอธิบาย | Monitor system memory usage |
ขนาดไฟล์ | 23.69 KB |
จำนวนการติดตั้ง | 20 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2014-06-19 |
วันที่เผยแพร่ | 2014-06-19 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | dan.belz69 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Memory Monitor", "description": "Monitor system memory usage", "version": "0.1", "manifest_version": 2, "permissions": [ "system.memory", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "extension.css" ], "js": [ "extension.js" ] } ], "commands": { "toggle-memory-monitor": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "Toggle Memory Monitor" } } } |