ELIV - Explain Like I'm 5

AI powered assistant to explain. Highlight text; get a simple explanation.

Was ist ELIV - Explain Like I'm 5?

ELIV - Explain Like I'm 5 ist eine Chrome-Erweiterung, die von benderville entwickelt wurde, und ihr Hauptmerkmal ist "AI powered assistant to explain. Highlight text; get a simple explanation.".

Erweiterungsscreenshots

screenshot

ELIV - Explain Like I'm 5-Erweiterungs-CRX-Datei herunterladen

Laden Sie ELIV - Explain Like I'm 5-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Simple assistant to explain text.
Simply highlight the text you want to understand, and a small box will appear with an explanation, generated by an AI (GPT3).

It's useful to decode technical work.
eg. 
highlighting
=> "Real-Time Recommendation System With Collisionless Embedding Table" 
show
=> "The Real-Time Recommendation System with Collisionless Embedding Table is a new way of recommendation that doesn't require a new model or algorithm. It uses the wisdom of the community to provide information that is both relevant and useful."

It's also useful to have information about company, product, ...
eg. 
highlighting
=> "CarperAI" 
show
=> "CarperAI is a company that creates artificial intelligence for humans."                    

Grundlegende Informationen zur Erweiterung

Name ELIV - Explain Like I'm 5 ELIV - Explain Like I'm 5
ID cnpglhcliocjaipbapalbdlbfepmamlc
Offizielle URL https://chromewebstore.google.com/detail/eliv-explain-like-im-5/cnpglhcliocjaipbapalbdlbfepmamlc
Beschreibung AI powered assistant to explain. Highlight text; get a simple explanation.
Dateigröße 9.3 KB
Installationsanzahl 228
Aktuelle Version 1.3
Letztes Update 2022-12-14
Veröffentlichungsdatum 2022-12-06
Bewertung 3.50/5 Insgesamt 4 Bewertungen
Entwickler benderville
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ELIV - Explain Like I'm 5",
    "description": "AI powered assistant to explain. Highlight text; get a simple explanation.",
    "version": "1.3",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "box.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "box.html"
            ]
        }
    ]
}