Regex Text Replacer

Specify regex patterns of text to match and replace in the page.

Vad är Regex Text Replacer?

Regex Text Replacer är en Chrome-tillägg utvecklad av sbreakey, och dess huvudfunktion är "Specify regex patterns of text to match and replace in the page.".

Ladda ner Regex Text Replacer-förlängningens CRX-fil

Ladda ner Regex Text Replacer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Specify regular expression patters to match and replace. Only searches text nodes. Runs once DOM is fully loaded, and then monitors the DOM for changes.

Use %s in the replacement text to insert whatever was matched in the replacement.
Use $1, $2, etc to insert the respective matched group.                    

Grundläggande Information om Tillägg

Namn Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
Officiell webbadress https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Beskrivning Specify regex patterns of text to match and replace in the page.
Filstorlek 6.24 KB
Antal Installationer 59
Aktuell Version 0.2
Senast Uppdaterad 2014-09-06
Publiceringsdatum 2014-09-06
Betyg 2.80/5 Totalt 5 Betyg
Utvecklare sbreakey
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Text Replacer",
    "description": "Specify regex patterns of text to match and replace in the page.",
    "version": "0.2",
    "permissions": [
        "",
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ]
}