Regex Extracter

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

Co to jest Regex Extracter?

Regex Extracter to rozszerzenie Chrome opracowane przez zhangbohun, a jego główną funkcją jest „Use regex to extract the text content you need from web page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Regex Extracter

Pobierz pliki rozszerzeń Regex Extracter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Regex Extracter Regex Extracter
ID hhnkaciopdblfpomobniofiiecfiibph
Oficjalny URL https://chromewebstore.google.com/detail/regex-extracter/hhnkaciopdblfpomobniofiiecfiibph
Opis Use regex to extract the text content you need from web page
Rozmiar pliku 144 KB
Liczba instalacji 541
Aktualna Wersja 0.1.6
Ostatnia Aktualizacja 2021-08-30
Data Publikacji 2020-05-30
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper zhangbohun
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
}