Link Grabber
An easy to use extractor or grabber for hyperlinks on an HTML page
Co to jest Link Grabber?
Link Grabber to rozszerzenie Chrome opracowane przez Don, a jego główną funkcją jest „An easy to use extractor or grabber for hyperlinks on an HTML page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Link Grabber
Pobierz pliki rozszerzeń Link Grabber w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Link Grabber |
ID | caodelkhipncidmoebgbbeemedohcdma |
Oficjalny URL | https://chromewebstore.google.com/detail/link-grabber/caodelkhipncidmoebgbbeemedohcdma |
Opis | An easy to use extractor or grabber for hyperlinks on an HTML page |
Rozmiar pliku | 200 KB |
Liczba instalacji | 211,861 |
Aktualna Wersja | 0.5.2 |
Ostatnia Aktualizacja | 2023-04-30 |
Data Publikacji | 2017-11-10 |
Ocena | 4.58/5 Łącznie 219 Oceny |
Deweloper | Don |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/7fffffff/linkgrabber |
Obsługiwane Języki | 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" } } |