gpt.best
Share ChatGPT Transcripts
什麼是gpt.best?
gpt.best是由Riley Tomasek開發的Chrome擴展程式,該擴展的主要功能是“Share ChatGPT Transcripts”。
擴展截圖
下載gpt.best擴展crx文件
下載gpt.best擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
GPTBest adds a share button to the ChatGPT app that creates a shareable link from the current conversation. It's great for sharing longer conversations that don't fit in a screenshot.
擴展基本資訊
名稱 | gpt.best |
ID | lfjehajehlondfmmdnacgomigbkfahln |
官方網址 | https://chromewebstore.google.com/detail/gptbest/lfjehajehlondfmmdnacgomigbkfahln |
簡介 | Share ChatGPT Transcripts |
檔案大小 | 7.94 KB |
安裝次數 | 850 |
目前版本 | 1.1.0 |
更新時間 | 2023-03-21 |
上架時間 | 2022-12-12 |
評分 | 4.20/5 共 5 次評分 |
開發者 | Riley Tomasek |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://gpt.best/ |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gpt.best", "description": "Share ChatGPT Transcripts", "version": "1.1.0", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat*" ], "js": [ "script.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" } } |