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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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:\/\/*\/*"
    ]
}