Link Inspector

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

Link Inspector là gì?

Link Inspector là một tiện ích mở rộng Chrome được phát triển bởi Zac Medico, và tính năng chính của nó là "Inspect, filter, and export hyperlinks contained in a web page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Link Inspector

Tải xuống các tệp mở rộng Link Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Link Inspector Link Inspector
ID fidhjbfmfkickbdgbpjpkoijmffanefh
URL Chính Thức https://chrome.google.com/webstore/detail/link-inspector/fidhjbfmfkickbdgbpjpkoijmffanefh
Mô tả Inspect, filter, and export hyperlinks contained in a web page.
Kích Thước Tệp 29.33 KB
Số Lần Cài Đặt 299
Phiên Bản Hiện Tại 1.0.0.0
Cập Nhật Lần Cuối 2015-03-15
Ngày Phát Hành 2015-03-15
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Zac Medico
Loại Thanh Toán free
Trang Web Mở Rộng https://sites.google.com/site/hyperlinkinspector/
Ngôn Ngữ Được Hỗ Trợ 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
}