Regex Checker

This extension uses regular expressions to find important elements on webpages.

Что такое Regex Checker?

Regex Checker - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension uses regular expressions to find important elements on webpages.".

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

screenshot
screenshot

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

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

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

                        Regex Checker uses regular expressions to find important elements on webpages.
The extension finds important text on webpages and highlights.

There are 2 modes of operation: manual and automatic.

Automatic:
- In automatic mode, a list of default regular expressions are used to parse the page and highlight important elements.
- The user can add or remove expressions from the current search criteria.

Manual:
- In manual mode, the user enters a custom regular expression along with flags.                    

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

Название Regex Checker Regex Checker
ID gkcnkoebkkppbapcjifgokmpcflfhbde
Официальный URL https://chromewebstore.google.com/detail/regex-checker/gkcnkoebkkppbapcjifgokmpcflfhbde
Описание This extension uses regular expressions to find important elements on webpages.
Размер файла 88.1 KB
Количество установок 89
Текущая Версия 0.0.0.1
Последнее Обновление 2017-12-09
Дата публикации 2017-12-09
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Checker",
    "description": "This extension uses regular expressions to find important elements on webpages.",
    "version": "0.0.0.1",
    "browser_action": {
        "default_icon": "img\/iconstar.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "lib\/jquery-3.2.1.js",
                "js\/searchFunction.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}