Status Check
resource status check tool
Status Check là gì?
Status Check là một tiện ích mở rộng Chrome được phát triển bởi ck0123456, và tính năng chính của nó là "resource status check tool".
Ả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 Status Check
Tải xuống các tệp mở rộng Status Check 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
===Description=== 1. Scan all of the resources on the current page, verify its accessibility by sending a request, and results will be loged. It will try to locate to the error node automatically, and you can find it by youself. 2. Used to find error links on a webpage. ===Instruction=== 1. Visit the page you want to check the resources(if asynchronous contents exists, you should check it after the contents finish loading). 2. Click on the icon to start checking. You do not have to wait until the check is completed, but don't refresh or close the page. 3. Statistical results will be displayed after finish. Logs can be filtered to display(error/redirect/total). 4. The plugin will try to locate the error nodes by red squares, and you can remove them by a click. 5. The error node which can't be located, you can find them by view source or inspect element. 6. Correct the error links. ===Other=== 1. The plugin do not ensure the result is completely accurate, Network speed or the server may affect. 2. 301/302 redirect can not be found now, will be added later. 3. Resources inside iframes will not be checked. 4. Suggestions welcome, mailto:[email protected]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Status Check |
ID | pninmpjhjchbpkopdphbkngalhfipaln |
URL Chính Thức | https://chromewebstore.google.com/detail/status-check/pninmpjhjchbpkopdphbkngalhfipaln |
Mô tả | resource status check tool |
Kích Thước Tệp | 44.03 KB |
Số Lần Cài Đặt | 2,000 |
Phiên Bản Hiện Tại | 1.2.4 |
Cập Nhật Lần Cuối | 2013-06-16 |
Ngày Phát Hành | 2013-06-16 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | ck0123456 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "contentscript.js" ], "run_at": "document_start" } ], "default_locale": "en", "description": "__MSG_extDesc__", "manifest_version": 2, "name": "__MSG_extName__", "permissions": [ "tabs" ], "version": "1.2.4" } |