Status Check
resource status check tool
Status Check란 무엇입니까?
Status Check은(는) ck0123456에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "resource status check tool"입니다.
확장 프로그램 스크린샷
Status Check 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
===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]
확장 프로그램 기본 정보
이름 | Status Check |
ID | pninmpjhjchbpkopdphbkngalhfipaln |
공식 URL | https://chromewebstore.google.com/detail/status-check/pninmpjhjchbpkopdphbkngalhfipaln |
설명 | resource status check tool |
파일 크기 | 44.03 KB |
설치 횟수 | 2,000 |
현재 버전 | 1.2.4 |
최근 업데이트 | 2013-06-16 |
출시 날짜 | 2013-06-16 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | ck0123456 |
결제 유형 | free |
지원되는 언어 | 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" } |