Link Skimmer

Link skimmer is a QA testing tool. It skims the links on your site reporting errors or terms you specifiy, eg '404', 'stack trace'

Link Skimmer क्या है?

Link Skimmer michael j rust द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Link skimmer is a QA testing tool. It skims the links on your site reporting errors or terms you specifiy, eg '404', 'stack trace'"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Link Skimmer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Link Skimmer is designed as a QA testing tool to search through a site for errors that you specify, such as 404 or Stack Trace, or even an old term you want to remove from the site, such as Zaire or Jaiku. Link Skimmer then recursively skims through the links from  the start page to report which pages have that term. To prevent the link skimmer clicking on irrelevant links, you can specify a domain or sub-domain and only links containing that name will be skimmed.
Link Skimmer uses an efficient javascript Set-object algorithm to ensure the links are skimmed efficiently and not repeated. At the reporting stage, link skimmer returns all of the links that match you asked it to look for. As a useful addition it also returns all of the pages that it found that have links to those links.

**Note from the developer**
I have some planned improvements but please report improvements you'd like or any issues that you are having.

Thanks and good testing                    

एक्सटेंशन की मूल जानकारी

नाम Link Skimmer Link Skimmer
ID cnmaglbifbenmndagplagefhlbfeacec
आधिकारिक URL https://chrome.google.com/webstore/detail/cnmaglbifbenmndagplagefhlbfeacec
विवरण Link skimmer is a QA testing tool. It skims the links on your site reporting errors or terms you specifiy, eg '404', 'stack trace'
फ़ाइल का आकार 332 KB
स्थापना संख्या 25
वर्तमान संस्करण 1.2.0.1
अंतिम अपडेट 2017-10-12
प्रकाशन तिथि 2017-10-12
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर michael j rust
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Skimmer",
    "version": "1.2.0.1",
    "description": "Link skimmer is a QA testing tool. It skims the links on your site reporting errors or terms you specifiy, eg '404', 'stack trace'",
    "permissions": [
        "notifications",
        "tabs"
    ],
    "web_accessible_resources": [
        "jquery-3.2.1.slim.min.js",
        "popper.min.js",
        "bootstrap.min.js"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Link Skimmer",
        "default_icon": "SiteSkimmerIconTwo128border.png"
    },
    "icons": {
        "128": "SiteSkimmerIconTwo128border.png"
    },
    "manifest_version": 2
}