ChatGPT for Amazon

AI shopping assistant for Amazon.

ChatGPT for Amazon란 무엇입니까?

ChatGPT for Amazon은(는) Alchain花生에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "AI shopping assistant for Amazon."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ChatGPT for Amazon: Real-Time Shopping Assistant

Overview
ChatGPT for Amazon is an AI-driven shopping assistant designed to enhance your Amazon shopping experience. Leveraging OpenAI's advanced language model, ChatGPT, this extension provides real-time product recommendations, evaluations, and answers to your questions, directly within the Amazon interface.

Why Install ChatGPT for Amazon?

1.Informed Decisions: Get instant AI-generated insights about the products you're considering, including purchase recommendations, pros and cons, and more. Make more informed decisions and shop with confidence.

2.Product Comparisons: Compare similar products quickly and efficiently. The plugin will provide AI-generated alternatives based on your current product view, helping you explore more options.

3.Real-time Q&A: Have questions about a product? Just ask! ChatGPT is capable of answering a wide range of product-related queries, making it easier for you to get the information you need.

4.Seamless Integration: ChatGPT for Amazon is integrated directly into the Amazon product page. It pops up automatically when you're viewing a product, providing a seamless and convenient shopping assistance experience.

How It Works
Once the extension is installed, simply visit an Amazon product page. ChatGPT for Amazon will pop up automatically, providing real-time advice and answering your queries directly on the page.

Remember, the first time you use it, you'll need to input your OpenAI API key.

ChatGPT for Amazon is here to transform your online shopping experience on Amazon, making it more informative and interactive. Download now and let AI make your Amazon shopping smarter and more convenient!                    

확장 프로그램 기본 정보

이름 ChatGPT for Amazon ChatGPT for Amazon
ID aaionafjdcpmogbbhglkhompliakihaa
공식 URL https://chromewebstore.google.com/detail/chatgpt-for-amazon/aaionafjdcpmogbbhglkhompliakihaa
설명 AI shopping assistant for Amazon.
파일 크기 25.45 KB
설치 횟수 149
현재 버전 0.1
최근 업데이트 2023-05-12
출시 날짜 2023-05-11
개발자 Alchain花生
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.notion.so/ChatGPT-for-Amazon-Real-Time-Shopping-Assistant-a66d16f1420f451cb715fd4412ca860f
도움말 페이지 URL https://www.notion.so/ChatGPT-for-Amazon-Real-Time-Shopping-Assistant-a66d16f1420f451cb715fd4412ca860f
개인정보 보호 정책 페이지 URL https://tested-relish-c0b.notion.site/AI-063de2a5b6374cf885556573cf4e5deb
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT for Amazon",
    "description": "AI shopping assistant for Amazon.",
    "version": "0.1",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/dp\/*",
                "https:\/\/*.amazon.com\/*\/dp\/*",
                "https:\/\/*.amazon.com\/*\/gp\/product\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}