Link Grabber
An easy to use extractor or grabber for hyperlinks on an HTML page
Qu'est-ce que Link Grabber ?
Link Grabber est une extension Chrome développée par Don, et sa fonction principale est "An easy to use extractor or grabber for hyperlinks on an HTML page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Link Grabber
Téléchargez les fichiers d'extension Link Grabber au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Link Grabber |
ID | caodelkhipncidmoebgbbeemedohcdma |
URL Officiel | https://chromewebstore.google.com/detail/link-grabber/caodelkhipncidmoebgbbeemedohcdma |
Description | An easy to use extractor or grabber for hyperlinks on an HTML page |
Taille du Fichier | 200 KB |
Nombre d'Installations | 211,861 |
Version Actuelle | 0.5.2 |
Dernière Mise à Jour | 2023-04-30 |
Date de Publication | 2017-11-10 |
Évaluation | 4.58/5 Total 219 Évaluations |
Développeur | Don |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/7fffffff/linkgrabber |
Langues Prises en Charge | 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" } } |