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文件

下载Check My Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        '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'"
}