Site Status Checker

Check for a websites status over time.

Was ist Site Status Checker?

Site Status Checker ist eine Chrome-Erweiterung, die von Jalsemgeest entwickelt wurde, und ihr Hauptmerkmal ist "Check for a websites status over time.".

Erweiterungsscreenshots

screenshot

Site Status Checker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Site Status Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Site Status Checker (SSC) allows you to have Chrome worry about checking if a website is available again with a valid status code.

Simply click SSC in the toolbar when you're on a site that's not behaving, specify the status code that is happening (ex. 404, 803, etc.), specify a poll interval in seconds (default to 300 seconds or 5 minutes), and click "Start Polling".

Once the website is no longer giving that status code, it will notify you with a simple notification, clicking it will bring you back to the previously misbehaving website.

Note: The minimum poll interval is 5 seconds.  This is to try to keep the interval down to a human like level, as SSC does not want to be used for any form of illegal or mischievous activities.                    

Grundlegende Informationen zur Erweiterung

Name Site Status Checker Site Status Checker
ID kipiakkaapbigeplcjilfdhegdollhec
Offizielle URL https://chrome.google.com/webstore/detail/site-status-checker/kipiakkaapbigeplcjilfdhegdollhec
Beschreibung Check for a websites status over time.
Dateigröße 23.24 KB
Installationsanzahl 105
Aktuelle Version 1.0.0
Letztes Update 2017-03-22
Veröffentlichungsdatum 2017-03-22
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Jalsemgeest
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Site Status Checker",
    "short_name": "SSC",
    "version": "1.0.0",
    "description": "Check for a websites status over time.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_popup": "info.html"
    },
    "minimum_chrome_version": "6.0.0.0",
    "icons": {
        "16": "assets\/images\/logo16.png",
        "48": "assets\/images\/logo48.png",
        "128": "assets\/images\/logo128.png"
    },
    "manifest_version": 2
}