ELIV - Explain Like I'm 5

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

Vad är ELIV - Explain Like I'm 5?

ELIV - Explain Like I'm 5 är en Chrome-tillägg utvecklad av benderville, och dess huvudfunktion är "AI powered assistant to explain. Highlight text; get a simple explanation.".

Tilläggsskärmbilder

screenshot

Ladda ner ELIV - Explain Like I'm 5-förlängningens CRX-fil

Ladda ner ELIV - Explain Like I'm 5-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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."                    

Grundläggande Information om Tillägg

Namn ELIV - Explain Like I'm 5 ELIV - Explain Like I'm 5
ID cnpglhcliocjaipbapalbdlbfepmamlc
Officiell webbadress https://chromewebstore.google.com/detail/eliv-explain-like-im-5/cnpglhcliocjaipbapalbdlbfepmamlc
Beskrivning AI powered assistant to explain. Highlight text; get a simple explanation.
Filstorlek 9.3 KB
Antal Installationer 228
Aktuell Version 1.3
Senast Uppdaterad 2022-12-14
Publiceringsdatum 2022-12-06
Betyg 3.50/5 Totalt 4 Betyg
Utvecklare benderville
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}