Splunkd AutoRefresh

Splunkd Auto Refresh

What is Splunkd AutoRefresh?

Splunkd AutoRefresh is a Chrome extension developed by hamilton.greene, and its main feature is "Splunkd Auto Refresh".

Download Splunkd AutoRefresh Extension CRX File

Download Splunkd AutoRefresh 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

                        *Automatically detects "503 Service Unavailable" Splunkd Daemon errors on Splunk domains when page is loaded or tab is switched
*If a 503 error is detected, the extension will automatically refresh the page it was found on.                    

Extension Basic Information

Name Splunkd AutoRefresh Splunkd AutoRefresh
ID ijcijheakepjcenhmgplgjnjobelgofl
Official URL https://chrome.google.com/webstore/detail/splunkd-autorefresh/ijcijheakepjcenhmgplgjnjobelgofl
Description Splunkd Auto Refresh
File Size 6.36 KB
Installation Count 31
Current Version 0.0.2
Last Updated 2014-07-17
Publish Date 2014-07-17
Developer hamilton.greene
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Splunkd AutoRefresh",
    "manifest_version": 2,
    "version": "0.0.2",
    "description": "Splunkd Auto Refresh",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/splunk.homedepot.com\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    }
}