Analytic Highlighter
NLP Powered Keyword Extractor
什么是Analytic Highlighter?
Analytic Highlighter是由yw73开发的Chrome扩展程序,该扩展的主要功能是“NLP Powered Keyword Extractor”。
扩展截图
下载Analytic Highlighter扩展crx文件
下载Analytic Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Analytic Highlighter |
ID | gngfhmbddijbejbddcojohokhnblfina |
官方URL | https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina |
简介 | NLP Powered Keyword Extractor |
文件大小 | 23.52 KB |
安装次数 | 32 |
当前版本 | 2.1 |
更新时间 | 2020-06-27 |
上架时间 | 2020-06-26 |
评分 | 3.00/5 共2次评分 |
开发者 | yw73 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Yidi0213/AnaLighter |
支持的语言 | 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" } } |