Regex Extracter

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

什麼是Regex Extracter?

Regex Extracter是由zhangbohun開發的Chrome擴展程式,該擴展的主要功能是“Use regex to extract the text content you need from web page”。

擴展截圖

screenshot

下載Regex Extracter擴展crx文件

下載Regex Extracter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}