ELIV - Explain Like I'm 5

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

ELIV - Explain Like I'm 5 là gì?

ELIV - Explain Like I'm 5 là một tiện ích mở rộng Chrome được phát triển bởi benderville, và tính năng chính của nó là "AI powered assistant to explain. Highlight text; get a simple explanation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ELIV - Explain Like I'm 5

Tải xuống các tệp mở rộng ELIV - Explain Like I'm 5 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ELIV - Explain Like I'm 5 ELIV - Explain Like I'm 5
ID cnpglhcliocjaipbapalbdlbfepmamlc
URL Chính Thức https://chromewebstore.google.com/detail/eliv-explain-like-im-5/cnpglhcliocjaipbapalbdlbfepmamlc
Mô tả AI powered assistant to explain. Highlight text; get a simple explanation.
Kích Thước Tệp 9.3 KB
Số Lần Cài Đặt 228
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2022-12-14
Ngày Phát Hành 2022-12-06
Đánh Giá 3.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển benderville
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}