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"입니다.
확장 프로그램 스크린샷
Link Grabber 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | caodelkhipncidmoebgbbeemedohcdma |
공식 URL | 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" } } |