Splunkd AutoRefresh

Splunkd Auto Refresh

Vad är Splunkd AutoRefresh?

Splunkd AutoRefresh är en Chrome-tillägg utvecklad av hamilton.greene, och dess huvudfunktion är "Splunkd Auto Refresh".

Ladda ner Splunkd AutoRefresh-förlängningens CRX-fil

Ladda ner Splunkd AutoRefresh-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        *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.                    

Grundläggande Information om Tillägg

Namn Splunkd AutoRefresh Splunkd AutoRefresh
ID ijcijheakepjcenhmgplgjnjobelgofl
Officiell webbadress https://chrome.google.com/webstore/detail/splunkd-autorefresh/ijcijheakepjcenhmgplgjnjobelgofl
Beskrivning Splunkd Auto Refresh
Filstorlek 6.36 KB
Antal Installationer 31
Aktuell Version 0.0.2
Senast Uppdaterad 2014-07-17
Publiceringsdatum 2014-07-17
Utvecklare hamilton.greene
Betalningssätt free
Stödda Språk 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"
    }
}