PingER
Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.
什麼是PingER?
PingER是由Kishore Ithadi開發的Chrome擴展程式,該擴展的主要功能是“Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.”。
擴展截圖
下載PingER擴展crx文件
下載PingER擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
| 官方網址 | 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 |
| 說明頁面URL | https://github.com/KishoreIthadi/Pinger/issues |
| 隱私政策頁面URL | 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:\/\/*\/*"
]
} | |