Regex Search and Extract

Our extension provides a seamless way to search, extract, and format data from webpages using regular expressions.

Regex Search and Extractคืออะไร?

Regex Search and Extract เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Machina Industries LLC และคุณลักษณะหลักของมันคือ "Our extension provides a seamless way to search, extract, and format data from webpages using regular expressions."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Regex Search and Extract

ดาวน์โหลดไฟล์ส่วนขยาย Regex Search and Extract ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Regex Search and Extract is a versatile and user-friendly Chrome extension designed to enhance your web browsing and data extraction experience by offering advanced regex search capabilities. This powerful tool allows you leverage regular expressions to search, extract, format, and export text from webpages quickly and efficiently.

Key Features:
• Regex Search and Extract: Perform complex search queries using regular expressions to find specific patterns, words, or phrases in the text of a webpage. This feature is particularly useful for developers, researchers, and anyone who needs to locate and analyze text data with precision.
• Custom Regex Flags: Customize your search by specifying regex flags like "g" (global search) and "m" (multiline search), giving you greater control over how your regular expressions are applied.
• Capture Groups: Use capture groups to extract and format specific parts of your regex matches. Regex Search and Extract supports both named and numbered capture groups, allowing for more flexibility in formatting the output. Modify the output format of your search results using a simple and intuitive syntax. For example, you can combine capture groups with static text to create a custom output, such as "Email: ${email}" or "Number: ${one}".
• Copy to Clipboard & Export Functionality: Quickly copy your search results to the clipboard or export them as a .txt file for further analysis or documentation.

By installing Regex Search and Extract, you'll gain a powerful tool that saves time when searching and extracting data from webpages. Whether you're a developer, researcher, or simply someone who frequently searches for specific text patterns, this extension will make your life easier and more productive.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Regex Search and Extract Regex Search and Extract
ID jccanncfjpkmfekpbkplpkabdlkokmfn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/regex-search-and-extract/jccanncfjpkmfekpbkplpkabdlkokmfn
คำอธิบาย Our extension provides a seamless way to search, extract, and format data from webpages using regular expressions.
ขนาดไฟล์ 15.22 KB
จำนวนการติดตั้ง 70
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-05-16
วันที่เผยแพร่ 2023-05-16
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Machina Industries LLC
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Regex Search and Extract",
    "version": "1.0",
    "description": "Our extension provides a seamless way to search, extract, and format data from webpages using regular expressions.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icons\/icon48.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}