Regex Text Replacer

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

Τι είναι το Regex Text Replacer;

Το Regex Text Replacer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sbreakey, και η κύρια λειτουργία του είναι "Specify regex patterns of text to match and replace in the page.".

Λήψη αρχείου CRX της επέκτασης Regex Text Replacer

Λήψη αρχείων επέκτασης Regex Text Replacer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
        }
    ]
}