Analytic Highlighter

NLP Powered Keyword Extractor

Analytic Highlighterคืออะไร?

Analytic Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yw73 และคุณลักษณะหลักของมันคือ "NLP Powered Keyword Extractor"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Analytic Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}