Multi-Highlight Tool

Search and highlight multiple words on web pages.

O que é Multi-Highlight Tool?

Multi-Highlight Tool é uma extensão do Chrome desenvolvida por multihighttoolextension, e sua principal característica é "Search and highlight multiple words on web pages.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Multi-Highlight Tool

Baixe arquivos de extensão Multi-Highlight Tool 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

                        Easily add words to a list and have them highlighted on web pages.                    

Informações Básicas da Extensão

Nome Multi-Highlight Tool Multi-Highlight Tool
ID elbamfklmdfhbighpndmfdidofdonigb
URL Oficial https://chromewebstore.google.com/detail/multi-highlight-tool/elbamfklmdfhbighpndmfdidofdonigb
Descrição Search and highlight multiple words on web pages.
Tamanho do Arquivo 50.12 KB
Contagem de Instalações 30,204
Versão Atual 1.0
Última Atualização 2021-08-28
Data de Publicação 2021-08-28
Classificação 4.43/5 Total de 14 Avaliações
Desenvolvedor multihighttoolextension
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "background": {
        "persistent": false,
        "scripts": [
            "js\/jquery.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/19x19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "css\/highlight.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/highlighter.js",
                "js\/content-action.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "description": "Search and highlight multiple words on web pages.",
    "icons": {
        "100": "img\/100x100.png",
        "128": "img\/128x128.png",
        "19": "img\/19x19.png",
        "48": "img\/48x48.png"
    },
    "manifest_version": 2,
    "name": "Multi-Highlight Tool",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0"
}