Service Health Check

Run Health check request against a URL

What is Service Health Check?

Service Health Check is a Chrome extension developed by Godoy, and its main feature is "Run Health check request against a URL".

Extension Screenshots

screenshot

Download Service Health Check Extension CRX File

Download Service Health Check extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Service Health Check Service Health Check
ID kafklllgljoglnmjggodkhflgdmlinig
Official URL https://chromewebstore.google.com/detail/service-health-check/kafklllgljoglnmjggodkhflgdmlinig
Description Run Health check request against a URL
File Size 39.69 KB
Installation Count 101
Current Version 0.0.3
Last Updated 2018-11-17
Publish Date 2018-11-12
Rating 5.00/5 Total 1 Ratings
Developer Godoy
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Service Health Check",
    "version": "0.0.3",
    "description": "Run Health check request against a URL",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "contextMenus",
        "tabs",
        "notifications"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.min.js",
                "main.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Service Health Check",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}