Highlight Keywords

Highlight keywords on webpage that you visited after searching for a keyword on a search engine.

O que é Highlight Keywords?

Highlight Keywords é uma extensão do Chrome desenvolvida por http://sites.google.com/site/extensionshub, e sua principal característica é "Highlight keywords on webpage that you visited after searching for a keyword on a search engine.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Highlight Keywords

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

                        Supported search engines are
✓ Google
✓ Yahoo
✓ Bing
✓ Yandex
✓ Baidu

How to On/Off the highlighter?
Click extension icon to on/off the highlighter.

How it works?

You search for a keyword on a search engine.
Then visit a webpage from returned results.
Keywords will be highlighted on that page.
To on/off the highlighter, just click extension icon.

What you will get with Highlight Keywords?
✓ A great highlighting extension.
✓ New tab page which includes links to popular sites.                    

Informações Básicas da Extensão

Nome Highlight Keywords Highlight Keywords
ID ifboknkcilomhlninjdnphlphadpcjli
URL Oficial https://chrome.google.com/webstore/detail/highlight-keywords/ifboknkcilomhlninjdnphlphadpcjli
Descrição Highlight keywords on webpage that you visited after searching for a keyword on a search engine.
Tamanho do Arquivo 30.43 KB
Contagem de Instalações 355
Versão Atual 1.0
Última Atualização 2017-12-20
Data de Publicação 2017-12-20
Classificação 3.43/5 Total de 7 Avaliações
Desenvolvedor http://sites.google.com/site/extensionshub
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://freepicturesolutions.com/privacy_policy.html
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight Keywords",
    "default_locale": "en",
    "description": "Highlight keywords on webpage that you visited after searching for a keyword on a search engine.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "1.0",
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "style.css"
    ]
}