Storage Monitor
Monitor system capacity
ما هو Storage Monitor؟
Storage Monitor هو إضافة Chrome تم تطويرها بواسطة benzihomo، والميزة الرئيسية لها هي "Monitor system capacity".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Storage Monitor
قم بتنزيل ملفات الامتداد Storage Monitor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Press "Alt+Shift+W" to display your system capacity details.
معلومات أساسية عن التمديد
الاسم | |
ID | albkjjcpjnleafcacecgjoaddehbojko |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/storage-monitor/albkjjcpjnleafcacecgjoaddehbojko |
الوصف | Monitor system capacity |
حجم الملف | 17.14 KB |
عدد التثبيتات | 103 |
النسخة الحالية | 0.1 |
آخر تحديث | 2014-06-19 |
تاريخ النشر | 2014-06-19 |
تقييم | 1.00/5 مجموع تقييمات 1 |
المطور | benzihomo |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Storage Monitor", "description": "Monitor system capacity", "version": "0.1", "manifest_version": 2, "permissions": [ "system.storage", "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-storage-monitor": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "Toggle Storage Monitor" } } } |