ELIV - Explain Like I'm 5

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

Что такое ELIV - Explain Like I'm 5?

ELIV - Explain Like I'm 5 - это расширение Chrome, разработанное benderville, и его основная функция - "AI powered assistant to explain. Highlight text; get a simple explanation.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения ELIV - Explain Like I'm 5

Скачайте файлы расширений ELIV - Explain Like I'm 5 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название ELIV - Explain Like I'm 5 ELIV - Explain Like I'm 5
ID cnpglhcliocjaipbapalbdlbfepmamlc
Официальный URL https://chromewebstore.google.com/detail/eliv-explain-like-im-5/cnpglhcliocjaipbapalbdlbfepmamlc
Описание AI powered assistant to explain. Highlight text; get a simple explanation.
Размер файла 9.3 KB
Количество установок 228
Текущая Версия 1.3
Последнее Обновление 2022-12-14
Дата публикации 2022-12-06
Рейтинг 3.50/5 Всего 4 оценок
Разработчик benderville
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}