Analytic Highlighter
NLP Powered Keyword Extractor
O que é Analytic Highlighter?
Analytic Highlighter é uma extensão do Chrome desenvolvida por yw73, e sua principal característica é "NLP Powered Keyword Extractor".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Analytic Highlighter
Baixe arquivos de extensão Analytic 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
Have you ever run into a long document and had no idea where to start reading? Have you had a hard time extracting key information from a research paper? Have you ever had trouble looking for answers to your questions on a web page? Maybe you want a magical tool that can extract key information for you? Let this chrome extension do for you! When you turn on the Analytic Highlighter, it will select the whole content in the webpage as default. It then utilizes AI to extract and highlight key phrases in the content. Users can also select a specific paragraph and press "shift" key to highlight the key phrases appeared in that paragraph throughout the whole webpage.
Informações Básicas da Extensão
Nome | Analytic Highlighter |
ID | gngfhmbddijbejbddcojohokhnblfina |
URL Oficial | https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina |
Descrição | NLP Powered Keyword Extractor |
Tamanho do Arquivo | 23.52 KB |
Contagem de Instalações | 32 |
Versão Atual | 2.1 |
Última Atualização | 2020-06-27 |
Data de Publicação | 2020-06-26 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | yw73 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Yidi0213/AnaLighter |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Analytic Highlighter", "version": "2.1", "description": "NLP Powered Keyword Extractor", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "logo.png", "default_popup": "popup.html" }, "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" } } |