LinkAnalysis
Analyses the links in a page
什么是LinkAnalysis?
LinkAnalysis是由https://nerdstogeeks.com开发的Chrome扩展程序,该扩展的主要功能是“Analyses the links in a page”。
扩展截图
下载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 |
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:\/\/*\/*" ] } |