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是由benderville开发的Chrome扩展程序,该扩展的主要功能是“AI powered assistant to explain. Highlight text; get a simple explanation.”。

扩展截图

screenshot

下载ELIV - Explain Like I'm 5扩展crx文件

下载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"
            ]
        }
    ]
}