ChatGPT Explain

A ChatGPT Chrome Extension that explains concepts in a simple way

ChatGPT Explain란 무엇입니까?

ChatGPT Explain은(는) developer101에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A ChatGPT Chrome Extension that explains concepts in a simple way"입니다.

확장 프로그램 스크린샷

screenshot

ChatGPT Explain 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Looking for a way to understand complex concepts with ease? Look no further than ChatGPT Explain, the Chrome extension that simplifies even the most challenging topics.

📚 Select any text on your screen and get concise, brief, or detailed explanations of the concepts it contains.

💡 Customize the amount of detail you receive, from a quick overview to an in-depth analysis.

⏰ Save time and effort by getting instant access to the information you need.

👩‍🎓 Perfect for students, professionals, or anyone who loves to learn new things.

🆓 Completely free to use and easy to install with just a few clicks.

With ChatGPT Explain, understanding new information has never been easier. Say goodbye to confusion and frustration and start learning with ease today!                    

확장 프로그램 기본 정보

이름 ChatGPT Explain ChatGPT Explain
ID inllflnokfkadlfjmdimlngdniccmodp
공식 URL https://chromewebstore.google.com/detail/chatgpt-explain/inllflnokfkadlfjmdimlngdniccmodp
설명 A ChatGPT Chrome Extension that explains concepts in a simple way
파일 크기 97.03 KB
설치 횟수 721
현재 버전 1.2.1
최근 업데이트 2023-03-18
출시 날짜 2023-02-26
평점 4.59/5 총 17 개의 평점
개발자 developer101
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A ChatGPT Chrome Extension that explains concepts in a simple way",
    "version": "1.2.1",
    "manifest_version": 3,
    "name": "ChatGPT Explain",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-48.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage"
    ]
}