System Monitor
Monitor system status like CPU, memory, battery
ما هو System Monitor؟
System Monitor هو إضافة Chrome تم تطويرها بواسطة Rongjian Zhang، والميزة الرئيسية لها هي "Monitor system status like CPU, memory, battery".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة System Monitor
قم بتنزيل ملفات الامتداد System Monitor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Source code: https://github.com/pd4d10/system-monitor
معلومات أساسية عن التمديد
الاسم | System Monitor |
ID | ecmlflnkenbdjfocclindonmigndecla |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/system-monitor/ecmlflnkenbdjfocclindonmigndecla |
الوصف | Monitor system status like CPU, memory, battery |
حجم الملف | 94.98 KB |
عدد التثبيتات | 12,890 |
النسخة الحالية | 1.5.1 |
آخر تحديث | 2020-02-01 |
تاريخ النشر | 2020-02-01 |
تقييم | 4.57/5 مجموع تقييمات 49 |
المطور | Rongjian Zhang |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/pd4d10/system-monitor |
عنوان صفحة المساعدة | https://github.com/pd4d10/system-monitor |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "System Monitor", "version": "1.5.1", "description": "Monitor system status like CPU, memory, battery", "homepage_url": "https:\/\/github.com\/pd4d10\/system-monitor", "offline_enabled": true, "background": { "scripts": [ "dist\/background.js" ] }, "permissions": [ "system.cpu", "system.memory", "system.storage", "storage" ], "browser_action": { "default_popup": "dist\/popup.html" }, "options_ui": { "page": "dist\/options.html", "chrome_style": true }, "icons": { "128": "icon.png" } } |