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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}