Site Status Checker
Check for a websites status over time.
Qu'est-ce que Site Status Checker ?
Site Status Checker est une extension Chrome développée par Jalsemgeest, et sa fonction principale est "Check for a websites status over time.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Site Status Checker
Téléchargez les fichiers d'extension Site Status Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | kipiakkaapbigeplcjilfdhegdollhec |
URL Officiel | https://chrome.google.com/webstore/detail/site-status-checker/kipiakkaapbigeplcjilfdhegdollhec |
Description | Check for a websites status over time. |
Taille du Fichier | 23.24 KB |
Nombre d'Installations | 105 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2017-03-22 |
Date de Publication | 2017-03-22 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Jalsemgeest |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |