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 |
Eメール | [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" } } |