Regex Replace

A regex engine to handle basic regular expressions on all viewed pages.

Что такое Regex Replace?

Regex Replace - это расширение Chrome, разработанное Jack Kingsman, и его основная функция - "A regex engine to handle basic regular expressions on all viewed pages.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Regex Replace

Скачайте файлы расширений Regex Replace в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Whether you want to consolidate your cloud-to-butt and your xkcd inspired s/keyboard/leopard extensions, or just do a simple regex replace on all pages, this extension is for you.

With a quick engine that doesn't interrupt page display and an easy way to add new expressions, Regex Replace is what you need to do fast and easy regex replacements on every page you see.                    

Основная информация о расширении

Название Regex Replace Regex Replace
ID eggkcpojddgjkakokkdhocbjebhgkonb
Официальный URL https://chromewebstore.google.com/detail/regex-replace/eggkcpojddgjkakokkdhocbjebhgkonb
Описание A regex engine to handle basic regular expressions on all viewed pages.
Размер файла 165 KB
Количество установок 1,778
Текущая Версия 0.0.5
Последнее Обновление 2023-12-11
Дата публикации 2019-04-11
Рейтинг 4.27/5 Всего 22 оценок
Разработчик Jack Kingsman
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jkingsman/regex-replace/issues
URL страницы помощи https://github.com/jkingsman/regex-replace/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Regex Replace",
    "version": "0.0.5",
    "description": "A regex engine to handle basic regular expressions on all viewed pages.",
    "browser_action": {
        "default_title": "Regex Replace Options",
        "default_icon": {
            "19": "img\/gear19.png",
            "38": "img\/gear38.png"
        },
        "default_popup": "html\/main.html"
    },
    "author": "Jack Kingsman ",
    "icons": {
        "16": "img\/gear16.png",
        "48": "img\/gear48.png",
        "128": "img\/gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage"
    ]
}