RegEx Highlighter

Hilight text on any webpage using regular expressions

O que é RegEx Highlighter?

RegEx Highlighter é uma extensão do Chrome desenvolvida por swellsdev, e sua principal característica é "Hilight text on any webpage using regular expressions".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão RegEx Highlighter

Baixe arquivos de extensão RegEx Highlighter 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

                        Want to persistently highlight text on webpages using Regular Expressions? Try Regular Expression Highlighter!                    

Informações Básicas da Extensão

Nome RegEx Highlighter RegEx Highlighter
ID fflhnegnapfabeeoanbnmhkengiabffb
URL Oficial https://chrome.google.com/webstore/detail/regex-highlighter/fflhnegnapfabeeoanbnmhkengiabffb
Descrição Hilight text on any webpage using regular expressions
Tamanho do Arquivo 41.83 KB
Contagem de Instalações 317
Versão Atual 1.0
Última Atualização 2014-10-31
Data de Publicação 2014-10-31
Classificação 3.25/5 Total de 12 Avaliações
Desenvolvedor swellsdev
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RegEx Highlighter",
    "description": "Hilight text on any webpage using regular expressions",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "RegEx Highlight!",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "background.js",
                "highlightRegex.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "manifest_version": 2
}