Analytic Highlighter

NLP Powered Keyword Extractor

Cos'è Analytic Highlighter?

Analytic Highlighter è un'estensione di Chrome sviluppata da yw73, e la sua funzione principale è "NLP Powered Keyword Extractor".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Analytic Highlighter

Scarica i file di estensione Analytic Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Analytic Highlighter Analytic Highlighter
ID gngfhmbddijbejbddcojohokhnblfina
URL Ufficiale https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina
Descrizione NLP Powered Keyword Extractor
Dimensione del File 23.52 KB
Conteggio Installazioni 32
Versione Corrente 2.1
Ultimo Aggiornamento 2020-06-27
Data di Pubblicazione 2020-06-26
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore yw73
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Yidi0213/AnaLighter
Lingue Supportate 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"
    }
}