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文件

下載Upload file for ChatGPT擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}