Analytic Highlighter

NLP Powered Keyword Extractor

Analytic Highlighter là gì?

Analytic Highlighter là một tiện ích mở rộng Chrome được phát triển bởi yw73, và tính năng chính của nó là "NLP Powered Keyword Extractor".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Analytic Highlighter

Tải xuống các tệp mở rộng Analytic Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Analytic Highlighter Analytic Highlighter
ID gngfhmbddijbejbddcojohokhnblfina
URL Chính Thức https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina
Mô tả NLP Powered Keyword Extractor
Kích Thước Tệp 23.52 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2020-06-27
Ngày Phát Hành 2020-06-26
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển yw73
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Yidi0213/AnaLighter
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}