Site Status Checker
Check for a websites status over time.
Site Status Checker là gì?
Site Status Checker là một tiện ích mở rộng Chrome được phát triển bởi Jalsemgeest, và tính năng chính của nó là "Check for a websites status over time.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Site Status Checker
Tải xuống các tệp mở rộng Site Status Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kipiakkaapbigeplcjilfdhegdollhec |
URL Chính Thức | https://chrome.google.com/webstore/detail/site-status-checker/kipiakkaapbigeplcjilfdhegdollhec |
Mô tả | Check for a websites status over time. |
Kích Thước Tệp | 23.24 KB |
Số Lần Cài Đặt | 105 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2017-03-22 |
Ngày Phát Hành | 2017-03-22 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Jalsemgeest |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |