Site Status Checker
Check for a websites status over time.
O que é Site Status Checker?
Site Status Checker é uma extensão do Chrome desenvolvida por Jalsemgeest, e sua principal característica é "Check for a websites status over time.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Site Status Checker
Baixe arquivos de extensão Site Status Checker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | kipiakkaapbigeplcjilfdhegdollhec |
URL Oficial | https://chrome.google.com/webstore/detail/site-status-checker/kipiakkaapbigeplcjilfdhegdollhec |
Descrição | Check for a websites status over time. |
Tamanho do Arquivo | 23.24 KB |
Contagem de Instalações | 105 |
Versão Atual | 1.0.0 |
Última Atualização | 2017-03-22 |
Data de Publicação | 2017-03-22 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Jalsemgeest |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |