PingER
Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.
ما هو PingER؟
PingER هو إضافة Chrome تم تطويرها بواسطة Kishore Ithadi، والميزة الرئيسية لها هي "Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة PingER
قم بتنزيل ملفات الامتداد PingER بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Pinger will run in the background when the browser is closed. This extension will send an email and chrome desktop notification once your entities state is changed. You can also customize the interval of status check.
معلومات أساسية عن التمديد
الاسم | |
ID | jcoegkmjenfpgmkoeomahaioddaajfdk |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/pinger/jcoegkmjenfpgmkoeomahaioddaajfdk |
الوصف | Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB. |
حجم الملف | 207 KB |
عدد التثبيتات | 84 |
النسخة الحالية | 0.0.0.3 |
آخر تحديث | 2019-11-19 |
تاريخ النشر | 2019-11-15 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Kishore Ithadi |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/KishoreIthadi/Pinger |
عنوان صفحة المساعدة | https://github.com/KishoreIthadi/Pinger/issues |
عنوان صفحة سياسة الخصوصية | https://github.com/KishoreIthadi/Pinger/blob/master/LICENSE |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PingER", "short_name": "PingER", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.", "version": "0.0.0.3", "icons": { "16": "images\/pingerX16.png", "32": "images\/pingerX32.png", "48": "images\/pingerX48.png", "128": "images\/pingerX128.png" }, "browser_action": { "default_icon": "images\/pingerX32.png", "default_popup": "pinger.html" }, "background": { "scripts": [ "scripts\/vendorjs.min.js", "scripts\/common.min.js", "scripts\/background.min.js" ] }, "permissions": [ "background", "notifications", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ] } |