File to Prompt for ChatGPT and Bard

Upload files to ChatGPT and convert them into Text Prompts.

File to Prompt for ChatGPT and Bardคืออะไร?

File to Prompt for ChatGPT and Bard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://filetoprompt.com และคุณลักษณะหลักของมันคือ "Upload files to ChatGPT and convert them into Text Prompts."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย File to Prompt for ChatGPT and Bard

ดาวน์โหลดไฟล์ส่วนขยาย File to Prompt for ChatGPT and Bard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The "File to Prompt" browser extension, developed by Fernando Dilland, enriches the interface of ChatGPT and Bard by allowing the conversion of selected file contents into text prompts for use with artificial intelligence.

This tool introduces a button for local file selection, accepting a variety of formats, including PDF, Word, Excel, TXT, and more. Once a file is chosen, the extension extracts its textual content and transfers it directly into the cell. In cases where the text is excessively long, it segments the content into manageable parts for further processing.

Each piece of segmented text is sequentially sent as a reference text to the conversation, marked by a unique part number. This feature enables the generative language model to contextualize the entirety of a file, thereby enhancing its comprehension and response capabilities.

The extension brings numerous benefits to both casual users and developers. It significantly simplifies the process of loading file content into the ChatGPT and Bard interfaces, boosting efficiency and productivity. Instead of manually copying and pasting text, users can directly upload files in various formats, saving time and reducing the possibility of errors. The text segmentation function makes handling extensive files easier, allowing for a smoother and more manageable interaction with the AI model. Finally, by sending each fragment of text as a numbered reference text, the model's ability to understand and respond coherently is enhanced, providing an improved user experience and more accurate results.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ File to Prompt for ChatGPT and Bard File to Prompt for ChatGPT and Bard
ID hmhjddciebeidnliblcaonmdlknagjim
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/hmhjddciebeidnliblcaonmdlknagjim
คำอธิบาย Upload files to ChatGPT and convert them into Text Prompts.
ขนาดไฟล์ 532 KB
จำนวนการติดตั้ง 7,561
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2023-06-06
วันที่เผยแพร่ 2023-05-30
คะแนน 1.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา http://filetoprompt.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://filetoprompt.com/
URL หน้าช่วยเหลือ https://github.com/fernandodilland/file-to-prompt/issues
ภาษาที่รองรับ id,de,en,fil,fr,nl,tr,es,it,pl,pt-BR,sv,el,ru,hi,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.1.0",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_icon": {
            "16": "static\/icon-16.png",
            "32": "static\/icon-32.png",
            "48": "static\/icon-48.png",
            "64": "static\/icon-64.png",
            "128": "static\/icon-128.png",
            "300": "static\/icon-300.png"
        }
    },
    "background": {
        "service_worker": "static\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.openai.com\/*",
                "https:\/\/chat.openai.com\/*",
                "https:\/\/ai.com\/*",
                "https:\/\/bard.google.com\/*"
            ],
            "js": [
                "static\/content.js",
                "static\/mammoth.browser.min.js",
                "static\/pdf.min.js",
                "static\/pdf.worker.min.js",
                "static\/background.js"
            ]
        }
    ],
    "default_locale": "en"
}