gpt.best

Share ChatGPT Transcripts

什么是gpt.best?

gpt.best是由Riley Tomasek开发的Chrome扩展程序,该扩展的主要功能是“Share ChatGPT Transcripts”。

扩展截图

screenshot

下载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 gpt.best
ID lfjehajehlondfmmdnacgomigbkfahln
官方URL 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"
    }
}