Link Inspector

Inspect, filter, and export hyperlinks contained in a web page.

什么是Link Inspector?

Link Inspector是由Zac Medico开发的Chrome扩展程序,该扩展的主要功能是“Inspect, filter, and export hyperlinks contained in a web page.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Link Inspector扩展crx文件

下载Link Inspector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is an extension for inspecting, filtering, and exporting hyperlinks found in web pages. When browsing any web page, simply click on the extension's popup to view a list of hyperlinks. Links can be filtered by typing into a filter bar, and specific links can be selected by clicking on their respective check-boxes. Selected links can be copied to the clipboard, saved to a file, or exported to a web intent handler.                    

扩展基本信息

名称 Link Inspector Link Inspector
ID fidhjbfmfkickbdgbpjpkoijmffanefh
官方URL https://chrome.google.com/webstore/detail/link-inspector/fidhjbfmfkickbdgbpjpkoijmffanefh
简介 Inspect, filter, and export hyperlinks contained in a web page.
文件大小 29.33 KB
安装次数 299
当前版本 1.0.0.0
更新时间 2015-03-15
上架时间 2015-03-15
评分 4.00/5 共1次评分
开发者 Zac Medico
付费类型 free
扩展官网 https://sites.google.com/site/hyperlinkinspector/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Inspector",
    "description": "Inspect, filter, and export hyperlinks contained in a web page.",
    "version": "1.0.0.0",
    "icons": {
        "16": "icons\/LinkInspector_16.png",
        "48": "icons\/LinkInspector_48.png",
        "128": "icons\/LinkInspector_128.png"
    },
    "browser_action": {
        "default_icon": "icons\/Chain_no_border_19.png",
        "default_popup": "layout\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/page.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/require.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "options_page": "layout\/options.html",
    "permissions": [
        "clipboardWrite"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/hyperlinkinspector.googlecode.com\/*"
        ]
    },
    "offline_enabled": true
}