Analytic Highlighter

NLP Powered Keyword Extractor

What is Analytic Highlighter?

Analytic Highlighter is a Chrome extension developed by yw73, and its main feature is "NLP Powered Keyword Extractor".

Extension Screenshots

screenshot
screenshot
screenshot

Download Analytic Highlighter Extension CRX File

Download Analytic Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Analytic Highlighter Analytic Highlighter
ID gngfhmbddijbejbddcojohokhnblfina
Official URL https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina
Description NLP Powered Keyword Extractor
File Size 23.52 KB
Installation Count 32
Current Version 2.1
Last Updated 2020-06-27
Publish Date 2020-06-26
Rating 3.00/5 Total 2 Ratings
Developer yw73
Email [email protected]
Payment Type free
Extension Website https://github.com/Yidi0213/AnaLighter
Supported Languages 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"
    }
}