Link Grabber

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

Was ist Link Grabber?

Link Grabber ist eine Chrome-Erweiterung, die von Don entwickelt wurde, und ihr Hauptmerkmal ist "An easy to use extractor or grabber for hyperlinks on an HTML page".

Erweiterungsscreenshots

screenshot
screenshot

Link Grabber-Erweiterungs-CRX-Datei herunterladen

Laden Sie Link Grabber-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Link Grabber Link Grabber
ID caodelkhipncidmoebgbbeemedohcdma
Offizielle URL https://chromewebstore.google.com/detail/link-grabber/caodelkhipncidmoebgbbeemedohcdma
Beschreibung An easy to use extractor or grabber for hyperlinks on an HTML page
Dateigröße 200 KB
Installationsanzahl 211,861
Aktuelle Version 0.5.2
Letztes Update 2023-04-30
Veröffentlichungsdatum 2017-11-10
Bewertung 4.58/5 Insgesamt 219 Bewertungen
Entwickler Don
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/7fffffff/linkgrabber
Unterstützte Sprachen 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"
    }
}