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 |
官方網址 | 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" } } |