Rex - RegEx Highlight or Collapse Text

Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.

O que é Rex - RegEx Highlight or Collapse Text?

Rex - RegEx Highlight or Collapse Text é uma extensão do Chrome desenvolvida por cgrossde, e sua principal característica é "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Rex - RegEx Highlight or Collapse Text

Baixe arquivos de extensão Rex - RegEx Highlight or Collapse Text 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

                        This extension allows to use regular expressions to highlight or collapse text on a web page. It was developed to facilitate log analysis (e.g. highlight important parts of stacktraces and collapsing framework noise)

GitHub: https://github.com/cgrossde/rex                    

Informações Básicas da Extensão

Nome Rex - RegEx Highlight or Collapse Text Rex - RegEx Highlight or Collapse Text
ID eejlhekkafpkffbhpidchepheodkgnib
URL Oficial https://chromewebstore.google.com/detail/rex-regex-highlight-or-co/eejlhekkafpkffbhpidchepheodkgnib
Descrição Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.
Tamanho do Arquivo 314 KB
Contagem de Instalações 192
Versão Atual 0.3.1
Última Atualização 2018-09-06
Data de Publicação 2018-09-06
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor cgrossde
Tipo de Pagamento free
Site da Extensão https://github.com/cgrossde/rex
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rex - RegEx Highlight or Collapse Text",
    "short_name": "REX",
    "description": "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.",
    "version": "0.3.1",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png",
        "32": "img\/icon32.png"
    },
    "offline_enabled": true,
    "web_accessible_resources": [
        "css\/content.css",
        "js\/*.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "Rex - Search and Highlight",
        "default_icon": "img\/icon48.png",
        "default_popup": "popup.html"
    }
}