Link Grabber

An easy to use extractor or grabber for hyperlinks on an HTML page

什麼是Link Grabber?

Link Grabber是由Don開發的Chrome擴展程式,該擴展的主要功能是“An easy to use extractor or grabber for hyperlinks on an HTML page”。

擴展截圖

screenshot
screenshot

下載Link Grabber擴展crx文件

下載Link Grabber擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Extract links from an HTML page and display them in another tab.

Features:
* Requires no special permissions
* No usage information / analytics are collected from you
* Use either browser action button or context menu item to activate
* Configurable list of blocked domains
* Filter links by substring match
* Copy links to clipboard
* Show/hide links that appear more than once on the page
* Show/hide links to the same hostname as the source page
* Group links by domain

Source Code:
https://github.com/7fffffff/linkgrabber

Thanks to:

Icons by FatCow
http://www.fatcow.com/free-icons

React
http://facebook.github.io/react/

Twitter Bootstrap
http://twitter.github.com/bootstrap                    

擴展基本資訊

名稱 Link Grabber Link Grabber
ID caodelkhipncidmoebgbbeemedohcdma
官方網址 https://chromewebstore.google.com/detail/link-grabber/caodelkhipncidmoebgbbeemedohcdma
簡介 An easy to use extractor or grabber for hyperlinks on an HTML page
檔案大小 200 KB
安裝次數 211,861
目前版本 0.5.2
更新時間 2023-04-30
上架時間 2017-11-10
評分 4.58/5 共 219 次評分
開發者 Don
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/7fffffff/linkgrabber
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Grabber",
    "manifest_version": 2,
    "version": "0.5.2",
    "description": "An easy to use extractor or grabber for hyperlinks on an HTML page",
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage"
    ],
    "incognito": "split",
    "options_page": "\/html\/options.html",
    "icons": {
        "16": "\/images\/link_go_16.png",
        "32": "\/images\/link_go_32.png",
        "48": "\/images\/link_go_48.png",
        "128": "\/images\/link_go_128.png"
    },
    "background": {
        "scripts": [
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "\/images\/link_go_19.png",
        "default_title": "Extract the links on this page"
    }
}