Word Highlighter

This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web

O que é Word Highlighter?

Word Highlighter é uma extensão do Chrome desenvolvida por Rafael Almeida, e sua principal característica é "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Word Highlighter

Baixe arquivos de extensão Word Highlighter 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

                        The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter                    

Informações Básicas da Extensão

Nome Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
URL Oficial https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
Descrição This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Tamanho do Arquivo 229 KB
Contagem de Instalações 826
Versão Atual 1.0.2
Última Atualização 2016-11-27
Data de Publicação 2016-11-27
Classificação 2.75/5 Total de 8 Avaliações
Desenvolvedor Rafael Almeida
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Highlighter",
    "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ]
        }
    ]
}