Find and replace

A tool that help you find and replace text.

O que é Find and replace?

Find and replace é uma extensão do Chrome desenvolvida por zhanghengyou, e sua principal característica é "A tool that help you find and replace text.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Find and replace

Baixe arquivos de extensão Find and replace 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

                        Supports:
    1. Find and replace automatically after web page loading is complete.
    2. Save multiple rules.
    3. Run automatic, manual or realtime.
    4. The search results can be used as parameters in the replace text.
    5. Use regular expressions for matching.
    6. Support groups.
    7. Support context menu and keyboard shortcuts.
    8. Open in sidebar or popup.                    

Informações Básicas da Extensão

Nome Find and replace Find and replace
ID bhmpidliobdjgkohacnkgfagkdmckcia
URL Oficial https://chromewebstore.google.com/detail/find-and-replace/bhmpidliobdjgkohacnkgfagkdmckcia
Descrição A tool that help you find and replace text.
Tamanho do Arquivo 141 KB
Contagem de Instalações 1,342
Versão Atual 2.7
Última Atualização 2024-02-26
Data de Publicação 2023-04-25
Classificação 4.56/5 Total de 16 Avaliações
Desenvolvedor zhanghengyou
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Find and replace",
    "description": "A tool that help you find and replace text.",
    "version": "2.7",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "activeTab",
        "scripting",
        "storage",
        "sidePanel",
        "contextMenus"
    ],
    "icons": {
        "16": "find_and_replace.png",
        "32": "find_and_replace.png",
        "48": "find_and_replace.png"
    },
    "action": {
        "default_icon": "find_and_replace.png"
    },
    "side_panel": {
        "default_path": "index.html"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "settings.keyboard_shortcut.cmd1": {
            "suggested_key": "Ctrl+1",
            "description": "1"
        },
        "settings.keyboard_shortcut.cmd2": {
            "suggested_key": "Ctrl+2",
            "description": "2"
        },
        "settings.keyboard_shortcut.cmd3": {
            "suggested_key": "Ctrl+3",
            "description": "3"
        },
        "settings.keyboard_shortcut.cmd4": {
            "suggested_key": "Ctrl+4",
            "description": "4"
        }
    }
}