Site Status Checker
Check for a websites status over time.
什麼是Site Status Checker?
Site Status Checker是由Jalsemgeest開發的Chrome擴展程式,該擴展的主要功能是“Check for a websites status over time.”。
擴展截圖
下載Site Status Checker擴展crx文件
下載Site Status Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | kipiakkaapbigeplcjilfdhegdollhec |
官方網址 | https://chrome.google.com/webstore/detail/site-status-checker/kipiakkaapbigeplcjilfdhegdollhec |
簡介 | Check for a websites status over time. |
檔案大小 | 23.24 KB |
安裝次數 | 105 |
目前版本 | 1.0.0 |
更新時間 | 2017-03-22 |
上架時間 | 2017-03-22 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Jalsemgeest |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |