Regex

Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…

O que é Regex?

Regex é uma extensão do Chrome desenvolvida por Code Charity, e sua principal característica é "Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Regex

Baixe arquivos de extensão Regex 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: The ultimate Regex search ⭐️
Simply use Regex on any page with familiar Ctrl+F visuals. 

✓ Ctrl+Shift+F search field   
✓  Regex query searching
✓ Number of results per tab   ✓ Scroll screen to previous/next result   ✓ Highlighting search results

 ✓ Permanently marking up or replacing anything.

 Open Source!    https://github.com/code-for-charity (where we work hard daily.) 
 Please check out the source code & contribute 🎈

The Extension runs offline                    

Informações Básicas da Extensão

Nome Regex Regex
ID pmihaiejckejbpjdnildimfkpcpnohlo
URL Oficial https://chromewebstore.google.com/detail/regex/pmihaiejckejbpjdnildimfkpcpnohlo
Descrição Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…
Tamanho do Arquivo 366 KB
Contagem de Instalações 421
Versão Atual 2.0.0
Última Atualização 2023-03-27
Data de Publicação 2020-05-07
Classificação 4.50/5 Total de 14 Avaliações
Desenvolvedor Code Charity
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://improvedtube.com/privacy
Idiomas Suportados en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex",
    "version": "2.0.0",
    "default_locale": "en",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            }
        }
    },
    "offline_enabled": true
}