Analytic Highlighter

NLP Powered Keyword Extractor

Qu'est-ce que Analytic Highlighter ?

Analytic Highlighter est une extension Chrome développée par yw73, et sa fonction principale est "NLP Powered Keyword Extractor".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Analytic Highlighter

Téléchargez les fichiers d'extension Analytic Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Analytic Highlighter Analytic Highlighter
ID gngfhmbddijbejbddcojohokhnblfina
URL Officiel https://chromewebstore.google.com/detail/analytic-highlighter/gngfhmbddijbejbddcojohokhnblfina
Description NLP Powered Keyword Extractor
Taille du Fichier 23.52 KB
Nombre d'Installations 32
Version Actuelle 2.1
Dernière Mise à Jour 2020-06-27
Date de Publication 2020-06-26
Évaluation 3.00/5 Total 2 Évaluations
Développeur yw73
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Yidi0213/AnaLighter
Langues Prises en Charge 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"
    }
}