LinkAnalysis

Analyses the links in a page

Cos'è LinkAnalysis?

LinkAnalysis è un'estensione di Chrome sviluppata da https://nerdstogeeks.com, e la sua funzione principale è "Analyses the links in a page".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione LinkAnalysis

Scarica i file di estensione LinkAnalysis in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        *** 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.                    

Informazioni di Base sull'Estensione

Nome LinkAnalysis LinkAnalysis
ID jpaojmdkffahijgphhkpocgjgjmnagok
URL Ufficiale https://chromewebstore.google.com/detail/linkanalysis/jpaojmdkffahijgphhkpocgjgjmnagok
Descrizione Analyses the links in a page
Dimensione del File 57.68 KB
Conteggio Installazioni 290
Versione Corrente 2.0
Ultimo Aggiornamento 2013-01-09
Data di Pubblicazione 2013-01-08
Valutazione 4.56/5 Totale 18 Valutazioni
Sviluppatore https://nerdstogeeks.com
Tipo di Pagamento free
Sito Web dell'Estensione http://nerdstogeeks.com/tools/link-analysis-chrome.html
Lingue Supportate 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:\/\/*\/*"
    ]
}