ChatGPT Copy

ChatGPT Copy All or Copy Prompts To Clipboard in markdown, text or html format. Save ChatGPT Window, save prompts, save all prompts

ChatGPT Copyคืออะไร?

ChatGPT Copy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://airpunchai.com และคุณลักษณะหลักของมันคือ "ChatGPT Copy All or Copy Prompts To Clipboard in markdown, text or html format. Save ChatGPT Window, save prompts, save all prompts"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Copy

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

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

                        Work with OpenAI ChatGPT site,  features with right mouse click (context menu):
- Copy All : copy all prompts and responses of the active chat window. 
- Copy Prompts: copy all prompts of the active chat window.  
- Save ChatGPT windows or all prompts your own way after copy to clipboard. 
  
The default format is Markdown. User can choose the format from extension pop from Markdown, Text Only and original HTML elements. 

The extension is safe, private and non-intrusive. It only copy the content to clipboard, no file access, no remote calls, not even change the page in any manner.

The tool only works for OpenAI Chat (ChatGPT) with an url starting with https://chat.openai.com/  

Update November 5th, 2023 (Version 0.3.5):
- Minor bug fix for copy all

Update October 12th, 2023 (Version 0.3.4):
- Added support for GPT-4V. For prompts with images and text, only text portion will be copied to clipboard.
Update October 11th, 2023 (Version 0.3.3):
- Fixed bug that showed wrong prompt number.
Update October 3rd, 2023 (Version 0.3.2):
- New ChatGPT October change broke the copy prompts feature, it is fixed now.
Update August 18th, 2023 (Version 0.3.1):
- Adding a new feature! Now you have a choice to  only copy all the prompts!
- minor bug fixes
Update August 16th, 2023 (Version 0.3.0):
- Adding a new feature! Now you have a choice to  only copy the prompts!
Update April 3rd, 2023 (Version 0.2.2):
- Security update, no longer require tabs permission
Update March 23rd, 2023 (Version 0.2.1):
- Improved formatting of code blocks for markdown format
Updates March 16th, 2023 (Version 0.2.0) :
- Add timestamp to the start of the content (option to turn it off) 
- Improved readability for markdown format
- Context menu item only shown on chat.openai.com, and various other UI improvements                    

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

ชื่อ ChatGPT Copy ChatGPT Copy
ID apkacmgmebcbmncioocjeinopndhkpob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-copy/apkacmgmebcbmncioocjeinopndhkpob
คำอธิบาย ChatGPT Copy All or Copy Prompts To Clipboard in markdown, text or html format. Save ChatGPT Window, save prompts, save all prompts
ขนาดไฟล์ 113 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 0.3.5
อัปเดตครั้งล่าสุด 2023-11-07
วันที่เผยแพร่ 2023-03-13
คะแนน 4.78/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา https://airpunchai.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.airpunchai.com
URL หน้าช่วยเหลือ https://www.airpunchai.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Copy",
    "description": "ChatGPT Copy All or Copy Prompts To Clipboard in markdown, text or html format. Save ChatGPT Window, save prompts, save all prompts",
    "version": "0.3.5",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}