Keywords Highlighter

Keywords Highlighter.

O que é Keywords Highlighter?

Keywords Highlighter é uma extensão do Chrome desenvolvida por http://gadelkareem.com, e sua principal característica é "Keywords Highlighter.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Keywords Highlighter

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

                        Simple keyword highlighter for your google searches. Enable the extension will automatically highlight all keywords with different colors on all pages.                    

Informações Básicas da Extensão

Nome Keywords Highlighter Keywords Highlighter
ID jdpmilkhgmpgjlmphfpabfimbkfiimhk
URL Oficial https://chrome.google.com/webstore/detail/keywords-highlighter/jdpmilkhgmpgjlmphfpabfimbkfiimhk
Descrição Keywords Highlighter.
Tamanho do Arquivo 108 KB
Contagem de Instalações 323
Versão Atual 1.2
Última Atualização 2016-04-08
Data de Publicação 2016-04-07
Classificação 3.29/5 Total de 7 Avaliações
Desenvolvedor http://gadelkareem.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://gadelkareem.com/
URL da Página de Ajuda http://gadelkareem.com/
URL da Página de Política de Privacidade https://gadelkareem.com/category/wordpress
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Keywords Highlighter"
    },
    "description": "Keywords Highlighter.",
    "icons": {
        "128": "128.png",
        "16": "16.png",
        "32": "32.png",
        "48": "48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.12.0.min.js",
                "search-highlight-0.33.min.js",
                "highlighter.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "name": "Keywords Highlighter",
    "version": "1.2",
    "homepage_url": "http:\/\/gadelkareem.com\/",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}