Link Extractor
Easily extract, parse, or open all links/domains from a site or text with optional filters.
Link Extractor là gì?
Link Extractor là một tiện ích mở rộng Chrome được phát triển bởi Shane, và tính năng chính của nó là "Easily extract, parse, or open all links/domains from a site or text with optional filters.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Link Extractor
Tải xuống các tệp mở rộng Link Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Link Extractor |
ID | ifefifghpkllfibejafbakmflidjcjfp |
URL Chính Thức | https://chromewebstore.google.com/detail/link-extractor/ifefifghpkllfibejafbakmflidjcjfp |
Mô tả | Easily extract, parse, or open all links/domains from a site or text with optional filters. |
Kích Thước Tệp | 552 KB |
Số Lần Cài Đặt | 237 |
Phiên Bản Hiện Tại | 0.4.3 |
Cập Nhật Lần Cuối | 2023-12-30 |
Ngày Phát Hành | 2023-10-22 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Shane |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://link-extractor.cssnr.com/ |
URL Trang Trợ Giúp | https://github.com/cssnr/link-extractor#readme |
Ngôn Ngữ Được Hỗ Trợ | 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" } |