ImageGPT

Provide images based on Dall-E and its customization

ImageGPT란 무엇입니까?

ImageGPT은(는) quizgpt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provide images based on Dall-E and its customization"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ImageGPT is a real-time image generation and customizing based on Open AI's Dall-E. This is an easy AI platform technology that provides easy prompt-based image generation tool.

Our platform provides a wide range of features, including image generation, customizing prompt and editing image. Users can select their preferred option and access our content on chrome browser easily.                    

확장 프로그램 기본 정보

이름 ImageGPT ImageGPT
ID eagnpdcipbkhfkhopaehelppanagdlij
공식 URL https://chromewebstore.google.com/detail/imagegpt/eagnpdcipbkhfkhopaehelppanagdlij
설명 Provide images based on Dall-E and its customization
파일 크기 582 KB
설치 횟수 37
현재 버전 1.0.5
최근 업데이트 2023-09-21
출시 날짜 2023-05-15
개발자 quizgpt
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.quizgpt.net/
도움말 페이지 URL http://www.quizgpt.net/contact
개인정보 보호 정책 페이지 URL http://quizgpt.net/pages/terms
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.5",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "permissions": [
        "downloads",
        "storage",
        "background",
        "clipboardRead"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessbile_resources": [
        "logo.png"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}