UptimeRobot Monitor

This allows you to use the UptimeRobot 'monitor/account API keys' to monitor server statuses

UptimeRobot Monitorคืออะไร?

UptimeRobot Monitor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.bitourea.com และคุณลักษณะหลักของมันคือ "This allows you to use the UptimeRobot 'monitor/account API keys' to monitor server statuses"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UptimeRobot Monitor

ดาวน์โหลดไฟล์ส่วนขยาย UptimeRobot Monitor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A chrome extension that uses UptimeRobot (http://uptimerobot.com/) API's to display server statuses using Monitor or Account API key's at a click of the button. The extension is also capable of providing desktop notifications of server up and down statuses.

Features
--------

* Supports both Account and Monitor API keys.
* Server up and down desktop notifications.
* Immediate visible server up and down notifications in the extension browser action icon.
* Immidiate visible Total, 1 day and 7 day stats.
* Group monitors to see them separated in the extension display.
* Options and data stored using chrome storage sync API allowing it to be sync'ed between chrome's if signed in.
* Uses jquery.plugin.uptimeRobotMonitor to provide a beautiful visualization of server status and statistics related to 1 day, 7 day and all time server uptime percentages.
* Can use only Monitor API keys if you do not want to provide Account API key and hence trustable and secure.

Usage
-----
Install the extension. Go to the options by either clicking the setting buttons in the browser action popup or from the extensions page. Configure the required options. Add moniter and/or account API keys that you get from your UptimeRobot.com control panel. Provide a good name, a group and a color to the monitor. You can change everything except the API key once it is added. 

Options
-------
* Remove all the stored data: Removes all the monitors configured and settings saved w.r.t the extension.
* Refresh Interval (in mins): The interval at which the monitors are queried to get the server statuses for alerting desktop and browser action icon notification.
* Disable background notification: Disables the desktop and browser action icon notification's. This stops periodic query of UptimeRobot API's to get the server statuses.
* Add key: Adds/Saves the API keys configuration.
	* Key: The Monitor or Account API key
	* Color: The color of the server/monitor to use while displaying them in the browser action popup for this Key.
	* Name: A readable public name for the server/monitor.
	* Group: Adds the key to a particular group. The browser action popup groups by this name while displaying the server statuses.

Project Site
------------
The project site is hosted at http://shreyaspurohit.github.io/chrome.extension.uptimeRobotMonitor/.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ UptimeRobot Monitor UptimeRobot Monitor
ID oabacbgmganlfbkdhnloimcfcgipcdgl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/uptimerobot-monitor/oabacbgmganlfbkdhnloimcfcgipcdgl
คำอธิบาย This allows you to use the UptimeRobot 'monitor/account API keys' to monitor server statuses
ขนาดไฟล์ 232 KB
จำนวนการติดตั้ง 367
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2014-04-19
วันที่เผยแพร่ 2014-04-18
คะแนน 4.56/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา https://www.bitourea.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://shreyaspurohit.github.io/chrome.extension.uptimeRobotMonitor/
URL หน้าช่วยเหลือ https://github.com/shreyaspurohit/chrome.extension.uptimeRobotMonitor/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UptimeRobot Monitor",
    "description": "This allows you to use the UptimeRobot 'monitor\/account API keys' to monitor server statuses",
    "version": "1.1.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "alarms",
        "notifications",
        "storage",
        "http:\/\/*.uptimerobot.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/shreyaspurohit.github.io https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "resources\/html\/popup.html",
        "default_title": "Uptime Robot"
    },
    "background": {
        "scripts": [
            "resources\/js\/common.js",
            "resources\/js\/notifications.js",
            "resources\/js\/alarms.js",
            "resources\/js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "resources\/html\/options.html"
}