Analytic Highlighter
NLP Powered Keyword Extractor
Apa itu Analytic Highlighter?
Analytic Highlighter adalah ekstensi Chrome yang dikembangkan oleh yw73, dan fitur utamanya adalah "NLP Powered Keyword Extractor".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Analytic Highlighter
Unduh file ekstensi Analytic Highlighter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Analytic Highlighter |
ID | gngfhmbddijbejbddcojohokhnblfina |
URL Resmi | https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina |
Deskripsi | NLP Powered Keyword Extractor |
Ukuran File | 23.52 KB |
Jumlah Instalasi | 32 |
Versi Saat Ini | 2.1 |
Terakhir Diperbarui | 2020-06-27 |
Tanggal Publikasi | 2020-06-26 |
Penilaian | 3.00/5 Total 2 Penilaian |
Pengembang | yw73 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/Yidi0213/AnaLighter |
Bahasa yang Didukung | 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" } } |