Highlight Search Keywords
Highlight the keywords that you searched in google
O que é Highlight Search Keywords?
Highlight Search Keywords é uma extensão do Chrome desenvolvida por Desheng Li, e sua principal característica é "Highlight the keywords that you searched in google".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Highlight Search Keywords
Baixe arquivos de extensão Highlight Search 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
Since the new policy of Chrome Extension, to enable the extension again. Please click the icon -> This can read an change the site data -> On all site (recommended) or the site you are currently on. An extension that highlight the keywords that you searched on Google. Press F5 to remove the highlights.
Informações Básicas da Extensão
Nome | Highlight Search Keywords |
ID | nflhamjkngakbdnihackfkjoabknmooi |
URL Oficial | https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi |
Descrição | Highlight the keywords that you searched in google |
Tamanho do Arquivo | 145 KB |
Contagem de Instalações | 5,605 |
Versão Atual | 0.4 |
Última Atualização | 2019-08-21 |
Data de Publicação | 2019-08-21 |
Classificação | 3.21/5 Total de 33 Avaliações |
Desenvolvedor | Desheng Li |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Highlight Search Keywords", "description": "Highlight the keywords that you searched in google", "version": "0.4", "permissions": [ "storage" ], "manifest_version": 2, "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*" ], "js": [ "catchkeywords.js" ], "run_at": "document_end" }, { "exclude_matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "highlightkeywords.js" ], "run_at": "document_end" } ] } |