Check My Links

Check My Links is a link checker that crawls through your webpage and looks for broken links.

Check My Links란 무엇입니까?

Check My Links은(는) http://logflare.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check My Links is a link checker that crawls through your webpage and looks for broken links."입니다.

확장 프로그램 스크린샷

screenshot

Check My Links 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        'Check My Links' is an extension developed primarily for web designers, developers and content editors.

When you're editing a web page that has lots of links, wouldn't it be handy to be able to quickly check that all the links on the page are working ok? That's where 'Check My Links' comes in.

'Check My Links' quickly finds all the links on a web page, and checks each one for you. It highlights which ones are valid and which ones are broken, simple as that. 

You can copy all bad links to your clipboard with one click!

HTTP response codes and full URLs of broken links are published in the Console log (Found in: 'Chrome > Tools > Javascript Console' or Ctrl+Shift+J). 

Comments and feedback are welcome both here and directly to me on Twitter (@chasers).

UPDATES

Version 3.8.2: Use only activeTab permissions. Link to Logflare in link check stats box. Thanks for the support!

Version 3.8.1: Link to Page Modified in link check stats box. Thanks for the support!

Version 3.8: Copy to console will now mainly copy to your clipboard (it also still copies to your console just in case).

Version 3.7: Now works with local files, bug fixes, copy tweaks, general spring-cleaning (thanks to kyleladd, njablonski, tbrandles, pbx, iamdevelish for this release).

Version 3.6: Added optional 'warnings' for empty href attributes, trailing #s and anchor tags. Also, invalid links can now be dumped into the console in CSV format for export (many thanks to Kyle Ladd for this stuff).

Version 3.5.1: Sets 'noFollow' default to false on first run & checks for existence of either ID or Name attributes on pages linked to using URL fragments.

Version 3.5: Optionally check rel="nofollow" links, anchor links are now also validated, GET is now the default request method and you can now close the report box and re-run the checking process multiple times without any weirdness.

Version 3.4: You can now optionally cache valid links (green coloured, HTTP 200). This means the extension will always consider them valid each time you run the checking process, and therefore check only the red (broken) links each time... making page checking A LOT faster (many thanks to Kyle Ladd for this feature).

Also, you can click on the cache and method links on the page to quickly get to the options page (allowing you to change the HTTP method and caching settings quickly).

The extension also doesn't render multiple times on the page when re-clicking on the extension button.

Version 3.3.4: Now allows you to check links in a local file (note this requires the 'Allow access to file URLs' checkbox to be ticked in the Chrome extensions screen).

Version 3.3: Bugfixin'

Version 3.2: Added the option to choose the HTTP Request Type (HEAD or GET).

Version 3.1.2: Fixed blacklist (on the options page) not saving.

Version 3.0: You can now add the exclusion list, allowing you manually set URLs you don't want to be indexed (see the options page for the extension).

Version 2.3: Skips links when link relation (rel) attribute set to "nofollow"

Version 2.2: Skips Google Adsense links                    

확장 프로그램 기본 정보

이름 Check My Links Check My Links
ID ojkcdipcgfaekbeaelaapakgnjflfglf
공식 URL https://chrome.google.com/webstore/detail/check-my-links/ojkcdipcgfaekbeaelaapakgnjflfglf
설명 Check My Links is a link checker that crawls through your webpage and looks for broken links.
파일 크기 161 KB
설치 횟수 200,000
현재 버전 3.8.2
최근 업데이트 2020-11-19
출시 날짜 2019-11-20
평점 4.08/5 총 408 개의 평점
개발자 http://logflare.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/PageModifiedOfficial/Check-My-Links
도움말 페이지 URL https://github.com/PageModifiedOfficial/Check-My-Links/wiki
개인정보 보호 정책 페이지 URL https://logflare.app/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "weeicon.png",
        "default_title": "Check my links"
    },
    "description": "Check My Links is a link checker that crawls through your webpage and looks for broken links.",
    "icons": {
        "128": "icon.png"
    },
    "name": "Check My Links",
    "permissions": [
        "activeTab"
    ],
    "version": "3.8.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "functions.js",
            "background.js",
            "db.js",
            "check.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/CMY_styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}