LinkAnalysis

Analyses the links in a page

LinkAnalysisคืออะไร?

LinkAnalysis เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nerdstogeeks.com และคุณลักษณะหลักของมันคือ "Analyses the links in a page"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LinkAnalysis

ดาวน์โหลดไฟล์ส่วนขยาย 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
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:\/\/*\/*"
    ]
}