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