Broken Link Checker

A SEO tool to find broken (404) and redirected (301, 307, 308) links in all frames

Τι είναι το Broken Link Checker;

Το Broken Link Checker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον balvin.perrie, και η κύρια λειτουργία του είναι "A SEO tool to find broken (404) and redirected (301, 307, 308) links in all frames".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Broken Link Checker

Λήψη αρχείων επέκτασης Broken Link Checker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A simple tool to find broken (404 code) and redirected (301, 307, 308 codes) links in the current page. This tool examines all links in the current page (top frame and all sub-frames) and returns the status code and its meaning for each link. You can optionally ask the extension to check links inside about:blank frame elements are well. All broken links are placed in a separated category for easier detection. Beside each link, there is an inspect button which focuses the link to the center of the page to help to find the links faster.

Note that to increase link validation speed, the extension evaluates 5 links simultaneously.

Note that you can open the validation UI in a new popup window or as an embedded frame inside the page.

Note that this extension also notifies you about the links that are skipped like none HTTP links or mailto links

Features:
1. Deep search: search deep inside a website. If this mode is enabled, the extension parses all links of the same domain and extract links from them.
2. Filter: Ignore URLs that match with the user-specified keywords. This way you can increase the searching speed by ignoring particular URLs.
3. Filters to show and hide links with 2XX, 3XX, 4XX, and 5XX status codes                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Broken Link Checker Broken Link Checker
ID bjcoimpfplliplknnmgbffboiihamekf
Επίσημο URL https://chromewebstore.google.com/detail/broken-link-checker/bjcoimpfplliplknnmgbffboiihamekf
Περιγραφή A SEO tool to find broken (404) and redirected (301, 307, 308) links in all frames
Μέγεθος Αρχείου 158 KB
Αριθμός Εγκαταστάσεων 8,000
Τρέχουσα Έκδοση 0.3.1
Τελευταία Ενημέρωση 2023-02-23
Ημερομηνία Δημοσίευσης 2020-04-11
Αξιολόγηση 4.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής balvin.perrie
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/broken-link-checker.html
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/broken-link-checker.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/balvin.perrie.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.3.1",
    "name": "Broken Link Checker",
    "description": "A SEO tool to find broken (404) and redirected (301, 307, 308) links in all frames",
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "notifications",
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "action": [],
    "background": {
        "service_worker": "worker.js"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/broken-link-checker.html",
    "web_accessible_resources": [
        {
            "resources": [
                "data\/popup\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "description": "Press the action button"
        }
    }
}