Analytic Highlighter

NLP Powered Keyword Extractor

Co to jest Analytic Highlighter?

Analytic Highlighter to rozszerzenie Chrome opracowane przez yw73, a jego główną funkcją jest „NLP Powered Keyword Extractor”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Analytic Highlighter

Pobierz pliki rozszerzeń Analytic Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Analytic Highlighter Analytic Highlighter
ID gngfhmbddijbejbddcojohokhnblfina
Oficjalny URL https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina
Opis NLP Powered Keyword Extractor
Rozmiar pliku 23.52 KB
Liczba instalacji 32
Aktualna Wersja 2.1
Ostatnia Aktualizacja 2020-06-27
Data Publikacji 2020-06-26
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper yw73
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Yidi0213/AnaLighter
Obsługiwane Języki 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"
    }
}