Link Extractor

Easily extract, parse, or open all links/domains from a site or text with optional filters.

Link Extractorคืออะไร?

Link Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shane และคุณลักษณะหลักของมันคือ "Easily extract, parse, or open all links/domains from a site or text with optional filters."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link Extractor

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
}