Server Monitoring
Check whether servers are online or not and get notified via Notification Popups
Server Monitoringとは何ですか?
Server Monitoringはlimepixによって開発されたChromeの拡張機能で、その主な機能は「Check whether servers are online or not and get notified via Notification Popups」です。
拡張機能のスクリーンショット
Server Monitoring拡張機能のCRXファイルをダウンロード
Server Monitoring拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Server Monitoring is a simple to use Chrome Extension that monitors your server. All checks are mare completely on the client-side (in your browser) via JavaScript.
Checks are made every ten seconds.
If a server is not reachable for five times, you will receive a notification popup.
Enjoy and feel free to contact me for bugs or improvement ideas. 拡張機能の基本情報
| 名前 | |
| ID | dcfclloijmpaechbnkbkcgfpakhjmoog |
| 公式URL | https://chrome.google.com/webstore/detail/server-monitoring/dcfclloijmpaechbnkbkcgfpakhjmoog |
| 説明 | Check whether servers are online or not and get notified via Notification Popups |
| ファイルサイズ | 929 KB |
| インストール数 | 81 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2014-08-06 |
| 公開日 | 2014-08-06 |
| 開発者 | limepix |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Server Monitoring",
"short_name": "Server Monitoring",
"description": "Check whether servers are online or not and get notified via Notification Popups",
"version": "1.1",
"permissions": [
"webRequest",
"http:\/\/*\/",
"https:\/\/*\/",
"notifications",
"tabs"
],
"background": {
"scripts": [
"js\/jquery.js",
"js\/base.js",
"js\/popup.js",
"js\/background.js",
"js\/moment.min.js"
]
},
"options_page": "html\/options.html",
"browser_action": {
"default_icon": {
"19": "images\/logo_19.png",
"38": "images\/logo_38.png",
"48": "images\/logo_48.png"
},
"default_title": "Server Monitor",
"default_popup": "html\/popup.html"
}
} | |