Link Checker

Link checking using XHR.

Link Checker란 무엇입니까?

Link Checker은(는) synmantics에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Link checking using XHR."입니다.

확장 프로그램 스크린샷

screenshot

Link Checker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Fork me: http://github.com/myshen/chrome-extension-linkchecker
Please leave requests/comments/suggestions/PRs/etc on github!

Known issues (2015-02-17):
2.0.0 - link checking won't start; open Options, delete blacklist, click Save. Upgrade to 2.0.1

Quick and dirty checking of links in page using XHR.

Failed links are dumped in the console.
Green links returned status code in range [200, 400)
Red links returned error code.
Blue links timed out or there was some error sending the HTTP request.
Gray links are blacklisted

HTTP HEAD is tried first, then GET.

Icon image: Wikimedia External link icon rasterized from SVG.

Changelog
========
2.0.1 - Fix unable to start without blacklist
2.0.0 - Allow blacklisting, rewrite to allow fewer simultaneous requests
1.3.0 - Update to manifest version 2 away from deprecated version 1
1.2.1 - Added clearing feature                    

확장 프로그램 기본 정보

이름 Link Checker Link Checker
ID aibjbgmpmnidnmagaefhmcjhadpffaoi
공식 URL https://chromewebstore.google.com/detail/link-checker/aibjbgmpmnidnmagaefhmcjhadpffaoi
설명 Link checking using XHR.
파일 크기 90.61 KB
설치 횟수 7,141
현재 버전 2.0.1
최근 업데이트 2015-02-18
출시 날짜 2015-02-17
평점 3.84/5 총 43 개의 평점
개발자 synmantics
결제 유형 free
확장 프로그램 웹 사이트 http://github.com/myshen/chrome-extension-linkchecker
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Checker",
    "manifest_version": 2,
    "version": "2.0.1",
    "description": "Link checking using XHR.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Link Checker",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "URI.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "linkchecker.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "dashboard.html",
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}