Regex Text Replacer

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

Regex Text Replacer क्या है?

Regex Text Replacer sbreakey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Specify regex patterns of text to match and replace in the page."।

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

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

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

                        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.                    

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

नाम Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
आधिकारिक URL https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
विवरण Specify regex patterns of text to match and replace in the page.
फ़ाइल का आकार 6.24 KB
स्थापना संख्या 59
वर्तमान संस्करण 0.2
अंतिम अपडेट 2014-09-06
प्रकाशन तिथि 2014-09-06
रेटिंग 2.80/5 कुल 5 रेटिंग्स
डेवलपर sbreakey
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        }
    ]
}