ChatGPT Chat Extractor

A basic chat text Extractor

Vad är ChatGPT Chat Extractor?

ChatGPT Chat Extractor är en Chrome-tillägg utvecklad av Invictus, och dess huvudfunktion är "A basic chat text Extractor".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner ChatGPT Chat Extractor-förlängningens CRX-fil

Ladda ner ChatGPT Chat Extractor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time.
This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.                    

Grundläggande Information om Tillägg

Namn ChatGPT Chat Extractor ChatGPT Chat Extractor
ID ppkdabpmgbglpnghdbmnemflamdfgdkj
Officiell webbadress https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj
Beskrivning A basic chat text Extractor
Filstorlek 27.39 KB
Antal Installationer 31
Aktuell Version 0.0.20
Senast Uppdaterad 2023-02-07
Publiceringsdatum 2023-02-06
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Invictus
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://www.buymeacoffee.com/invic1us
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Chat Extractor",
    "description": "A basic chat text Extractor",
    "version": "0.0.20",
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon32.png"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "permissions": [
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 3
}