LinkAnalysis

Analyses the links in a page

LinkAnalysis là gì?

LinkAnalysis là một tiện ích mở rộng Chrome được phát triển bởi https://nerdstogeeks.com, và tính năng chính của nó là "Analyses the links in a page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng LinkAnalysis

Tải xuống các tệp mở rộng LinkAnalysis dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LinkAnalysis LinkAnalysis
ID jpaojmdkffahijgphhkpocgjgjmnagok
URL Chính Thức https://chromewebstore.google.com/detail/linkanalysis/jpaojmdkffahijgphhkpocgjgjmnagok
Mô tả Analyses the links in a page
Kích Thước Tệp 57.68 KB
Số Lần Cài Đặt 290
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2013-01-09
Ngày Phát Hành 2013-01-08
Đánh Giá 4.56/5 Tổng số 18 Đánh Giá
Nhà Phát Triển https://nerdstogeeks.com
Loại Thanh Toán free
Trang Web Mở Rộng http://nerdstogeeks.com/tools/link-analysis-chrome.html
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}