Link Extractor
Easily extract, parse, or open all links/domains from a site or text with optional filters.
Link Extractor란 무엇입니까?
Link Extractor은(는) Shane에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily extract, parse, or open all links/domains from a site or text with optional filters."입니다.
확장 프로그램 스크린샷
Link Extractor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Easily extract, parse, or open all links/domains from a site or text with optional filters. Feature packed with automatic dark/light mode, copy to clipboard, keyboard shortcuts, custom options, and much more... - Extract All Links and Domains from Any Site - Extract Links from Selected Text on any Site - Extract Links from Clipboard or Any Text - Open Multiple Links in Tabs from Text - Download Links and Domains as a Text File - Copy the Text from a Link via Context Menu - Quick Filter Links with a Regular Expression - Store Regular Expressions for Quick Filtering - Automatic Dark/Light Mode based on Browser Setting - Activate from Icon, Context Menu, or Keyboard Shortcuts
확장 프로그램 기본 정보
이름 | Link Extractor |
ID | ifefifghpkllfibejafbakmflidjcjfp |
공식 URL | https://chromewebstore.google.com/detail/link-extractor/ifefifghpkllfibejafbakmflidjcjfp |
설명 | Easily extract, parse, or open all links/domains from a site or text with optional filters. |
파일 크기 | 552 KB |
설치 횟수 | 237 |
현재 버전 | 0.4.3 |
최근 업데이트 | 2023-12-30 |
출시 날짜 | 2023-10-22 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Shane |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://link-extractor.cssnr.com/ |
도움말 페이지 URL | https://github.com/cssnr/link-extractor#readme |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Link Extractor", "description": "Easily extract, parse, or open all links\/domains from a site or text with optional filters.", "homepage_url": "https:\/\/link-extractor.cssnr.com\/", "author": "Shane", "version": "0.4.3", "manifest_version": 3, "commands": { "_execute_action": { "suggested_key": { "default": "Alt+Shift+A" }, "description": "Show Main Popup Action" }, "extract": { "suggested_key": { "default": "Alt+Shift+X" }, "description": "Extract Links from Tab" } }, "permissions": [ "activeTab", "contextMenus", "scripting", "storage" ], "background": { "type": "module", "service_worker": "js\/service-worker.js" }, "options_ui": { "page": "html\/options.html", "open_in_tab": true }, "action": { "default_popup": "html\/popup.html", "default_title": "Link Extractor", "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "96": "images\/logo96.png", "128": "images\/logo128.png" } }, "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "96": "images\/logo96.png", "128": "images\/logo128.png" }, "minimum_chrome_version": "88" } |