LinkAnalysis

Analyses the links in a page

LinkAnalysis क्या है?

LinkAnalysis https://nerdstogeeks.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Analyses the links in a page"।

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        *** Updated UI with Version 2.0 ***

- A more cleaner interface.
- Manifest version 2
- Same functionality

++++++++++++++++++

The extension runs on page actions and when ever user clicks the LinkAnalysis Icon from the address bar, it opens up a new page with the report of the analysed links.

It basically obtains the domain names from the links in the page, sorts them and categorizes accordingly.This will be useful if you want to analyze the link behaviour from your page. There is a counter for the links too.

The analysis is done at two levels, one at top domain level and one at the one sub-directory level. This also lets you grab all the external links at once and also shows the internal links too. All the javascript links and the mailto links are avoided at the external links area but you can see them at the domain level and sub-domain level analysis of the page.                    

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

नाम LinkAnalysis LinkAnalysis
ID jpaojmdkffahijgphhkpocgjgjmnagok
आधिकारिक URL https://chromewebstore.google.com/detail/linkanalysis/jpaojmdkffahijgphhkpocgjgjmnagok
विवरण Analyses the links in a page
फ़ाइल का आकार 57.68 KB
स्थापना संख्या 290
वर्तमान संस्करण 2.0
अंतिम अपडेट 2013-01-09
प्रकाशन तिथि 2013-01-08
रेटिंग 4.56/5 कुल 18 रेटिंग्स
डेवलपर https://nerdstogeeks.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://nerdstogeeks.com/tools/link-analysis-chrome.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LinkAnalysis",
    "manifest_version": 2,
    "version": "2.0",
    "description": "Analyses the links in a page",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_title": "Link Analysis",
        "default_icon": "la16.png"
    },
    "icons": {
        "16": "la16.png",
        "48": "la48.png",
        "128": "la128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}