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文件
下載Link Extractor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } |