Regex Extracter

Use regex to extract the text content you need from web page

Regex Extracter क्या है?

Regex Extracter zhangbohun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use regex to extract the text content you need from web page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Regex Extracter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        There are three text search modes:

Node mode: 
search HTML node text, the advantage is that can highlight the search result position.

Text mode: 
search the webpage text you see,commonly used to search results contain hyperlink text.

Source mode:
search HTML source code of web pages, commonly used to search for image addresses, download links, etc.                    

एक्सटेंशन की मूल जानकारी

नाम Regex Extracter Regex Extracter
ID hhnkaciopdblfpomobniofiiecfiibph
आधिकारिक URL https://chromewebstore.google.com/detail/regex-extracter/hhnkaciopdblfpomobniofiiecfiibph
विवरण Use regex to extract the text content you need from web page
फ़ाइल का आकार 144 KB
स्थापना संख्या 541
वर्तमान संस्करण 0.1.6
अंतिम अपडेट 2021-08-30
प्रकाशन तिथि 2020-05-30
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर zhangbohun
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "icons": {
        "128": "img\/icon.png"
    },
    "version": "0.1.6",
    "offline_enabled": true,
    "permissions": [
        "clipboardWrite"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "__MSG_name__",
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/search.js",
                "lib\/jquery.js"
            ]
        }
    ],
    "manifest_version": 2,
    "default_locale": "en"
}