Analytic Highlighter
NLP Powered Keyword Extractor
Wat is Analytic Highlighter?
Analytic Highlighter is een Chrome-extensie ontwikkeld door yw73, en de belangrijkste functie is "NLP Powered Keyword Extractor".
Extensie Screenshots
Download het CRX-bestand van de extensie Analytic Highlighter
Download Analytic Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Analytic Highlighter |
ID | gngfhmbddijbejbddcojohokhnblfina |
Officiële URL | https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina |
Beschrijving | NLP Powered Keyword Extractor |
Bestandsgrootte | 23.52 KB |
Aantal Installaties | 32 |
Huidige Versie | 2.1 |
Laatst Bijgewerkt | 2020-06-27 |
Publicatiedatum | 2020-06-26 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | yw73 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/Yidi0213/AnaLighter |
Ondersteunde Talen | 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" } } |