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
}