Analytic Highlighter

NLP Powered Keyword Extractor

¿Qué es Analytic Highlighter?

Analytic Highlighter es una extensión de Chrome desarrollada por yw73, y su función principal es "NLP Powered Keyword Extractor".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Analytic Highlighter

Descarga archivos de extensión Analytic Highlighter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Analytic Highlighter Analytic Highlighter
ID gngfhmbddijbejbddcojohokhnblfina
URL Oficial https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina
Descripción NLP Powered Keyword Extractor
Tamaño del Archivo 23.52 KB
Cantidad de Instalaciones 32
Versión Actual 2.1
Última Actualización 2020-06-27
Fecha de Publicación 2020-06-26
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador yw73
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Yidi0213/AnaLighter
Idiomas Soportados 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"
    }
}