Regex Extracter

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

Qu'est-ce que Regex Extracter ?

Regex Extracter est une extension Chrome développée par zhangbohun, et sa fonction principale est "Use regex to extract the text content you need from web page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Regex Extracter

Téléchargez les fichiers d'extension Regex Extracter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Regex Extracter Regex Extracter
ID hhnkaciopdblfpomobniofiiecfiibph
URL Officiel https://chromewebstore.google.com/detail/regex-extracter/hhnkaciopdblfpomobniofiiecfiibph
Description Use regex to extract the text content you need from web page
Taille du Fichier 144 KB
Nombre d'Installations 541
Version Actuelle 0.1.6
Dernière Mise à Jour 2021-08-30
Date de Publication 2020-05-30
Évaluation 5.00/5 Total 5 Évaluations
Développeur zhangbohun
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}