gpt.best

Share ChatGPT Transcripts

What is gpt.best?

gpt.best is a Chrome extension developed by Riley Tomasek, and its main feature is "Share ChatGPT Transcripts".

Extension Screenshots

screenshot

Download gpt.best Extension CRX File

Download gpt.best extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name gpt.best gpt.best
ID lfjehajehlondfmmdnacgomigbkfahln
Official URL https://chromewebstore.google.com/detail/gptbest/lfjehajehlondfmmdnacgomigbkfahln
Description Share ChatGPT Transcripts
File Size 7.94 KB
Installation Count 850
Current Version 1.1.0
Last Updated 2023-03-21
Publish Date 2022-12-12
Rating 4.20/5 Total 5 Ratings
Developer Riley Tomasek
Email [email protected]
Payment Type free
Extension Website https://gpt.best/
Supported Languages 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"
    }
}