LinkAnalysis

Analyses the links in a page

什麼是LinkAnalysis?

LinkAnalysis是由https://nerdstogeeks.com開發的Chrome擴展程式,該擴展的主要功能是“Analyses the links in a page”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載LinkAnalysis擴展crx文件

下載LinkAnalysis擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        *** 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
官方網址 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:\/\/*\/*"
    ]
}