Upload file for ChatGPT

Add File context to ChatGPT

Upload file for ChatGPT란 무엇입니까?

Upload file for ChatGPT은(는) Guillaume Reygner에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add File context to ChatGPT"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A Chrome extension that allows you to upload file directly into ChatGPT!

📤 Unlimited upload
💬 Unlimited conversation

🔗 50 file format supported 
👆 Drag and drop supported
🚀 Upload more than one file at a time
📁 Multiple file upload supported
🎬 Discuss with YouTube video
🖼️ Reading image text from web
👆 Scrapping data from website
📥 Download code file directly from chatGPT
🪶 Image to Text for Midjourney or StableDiffusion
👨‍💻 Preview code to Codepen/CodeSandbox

🤝 If you would like to support my work, you can donate to buymeacoffee.com/reygner022A
🐦 I share free project on my Twitter : twitter.com/guillaume_rygn                    

확장 프로그램 기본 정보

이름 Upload file for ChatGPT Upload file for ChatGPT
ID mflpknlcbonicfgikkmlloejpaigjapm
공식 URL https://chromewebstore.google.com/detail/upload-file-for-chatgpt/mflpknlcbonicfgikkmlloejpaigjapm
설명 Add File context to ChatGPT
파일 크기 507 KB
설치 횟수 5,014
현재 버전 2.24.6
최근 업데이트 2023-11-17
출시 날짜 2023-05-27
평점 4.00/5 총 8 개의 평점
개발자 Guillaume Reygner
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://twitter.com/guillaume_rygn
도움말 페이지 URL https://twitter.com/guillaume_rygn
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Upload file for ChatGPT",
    "version": "2.24.6",
    "author": "Guillaume Reygner",
    "description": "Add File context to ChatGPT",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.js",
                "pdf.min.js",
                "pdf.worker.min.js",
                "mammoth.browser.min.js",
                "ExtPay.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}