Regex Checker

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

O que é Regex Checker?

Regex Checker é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension uses regular expressions to find important elements on webpages.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Regex Checker

Baixe arquivos de extensão Regex Checker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Regex Checker Regex Checker
ID gkcnkoebkkppbapcjifgokmpcflfhbde
URL Oficial https://chromewebstore.google.com/detail/regex-checker/gkcnkoebkkppbapcjifgokmpcflfhbde
Descrição This extension uses regular expressions to find important elements on webpages.
Tamanho do Arquivo 88.1 KB
Contagem de Instalações 89
Versão Atual 0.0.0.1
Última Atualização 2017-12-09
Data de Publicação 2017-12-09
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}