Check My Links

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

Qu'est-ce que Check My Links ?

Check My Links est une extension Chrome développée par http://logflare.app, et sa fonction principale est "Check My Links is a link checker that crawls through your webpage and looks for broken links.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Check My Links

Téléchargez les fichiers d'extension Check My Links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        '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                    

Informations de Base sur l'Extension

Nom Check My Links Check My Links
ID ojkcdipcgfaekbeaelaapakgnjflfglf
URL Officiel https://chrome.google.com/webstore/detail/check-my-links/ojkcdipcgfaekbeaelaapakgnjflfglf
Description Check My Links is a link checker that crawls through your webpage and looks for broken links.
Taille du Fichier 161 KB
Nombre d'Installations 200,000
Version Actuelle 3.8.2
Dernière Mise à Jour 2020-11-19
Date de Publication 2019-11-20
Évaluation 4.08/5 Total 408 Évaluations
Développeur http://logflare.app
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/PageModifiedOfficial/Check-My-Links
URL de la Page d'Aide https://github.com/PageModifiedOfficial/Check-My-Links/wiki
URL de la Page de Politique de Confidentialité https://logflare.app/privacy
Langues Prises en Charge 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'"
}