Analytic Highlighter
NLP Powered Keyword Extractor
ما هو Analytic Highlighter؟
Analytic Highlighter هو إضافة Chrome تم تطويرها بواسطة yw73، والميزة الرئيسية لها هي "NLP Powered Keyword Extractor".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Analytic Highlighter
قم بتنزيل ملفات الامتداد Analytic Highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |