Reg Search

Allows to search the DOM elements of a web page with regular expressions.

O que é Reg Search?

Reg Search é uma extensão do Chrome desenvolvida por SFerrazLeite, e sua principal característica é "Allows to search the DOM elements of a web page with regular expressions.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Reg Search

Baixe arquivos de extensão Reg Search 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

                        Allows to search the DOM elements of a web page with regular expressions.                    

Informações Básicas da Extensão

Nome Reg Search Reg Search
ID ndnhmbfdiponmfjppfblcmbkcmjoibpf
URL Oficial https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf
Descrição Allows to search the DOM elements of a web page with regular expressions.
Tamanho do Arquivo 82.07 KB
Contagem de Instalações 63
Versão Atual 1.0
Última Atualização 2016-03-11
Data de Publicação 2016-03-11
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor SFerrazLeite
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/SFerrazLeite/reg-search
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "eventPage\/eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        },
        "next": {
            "description": "Go to the next search result",
            "suggested_key": {
                "default": "Alt+N"
            }
        },
        "prev": {
            "description": "Go to the previous search result",
            "suggested_key": {
                "default": "Alt+P"
            }
        },
        "copy": {
            "description": "Copy search results as JSON array to clip board",
            "suggested_key": {
                "default": "Alt+C"
            }
        }
    },
    "content_scripts": [
        {
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/jquery.min.js",
                "content\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "manifest_version": 2,
    "name": "Reg Search",
    "options_page": "options\/options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "clipboardWrite"
    ],
    "version": "1.0"
}