ChatGPT Markdown and PDF Extension

ChatGPT enhanced, support copy raw markdown, load pdf file.

Was ist ChatGPT Markdown and PDF Extension?

ChatGPT Markdown and PDF Extension ist eine Chrome-Erweiterung, die von ysailist entwickelt wurde, und ihr Hauptmerkmal ist "ChatGPT enhanced, support copy raw markdown, load pdf file.".

Erweiterungsscreenshots

screenshot
screenshot

ChatGPT Markdown and PDF Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Markdown and PDF Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        To provide additional features to enhance the ChatGPT experience, including converting replies to markdown strings, uploading files, and automatically asking questions based on regular expressions.                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Markdown and PDF Extension ChatGPT Markdown and PDF Extension
ID fdbinkcfdihppebpojopiljcmekfedkg
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-markdown-and-pdf/fdbinkcfdihppebpojopiljcmekfedkg
Beschreibung ChatGPT enhanced, support copy raw markdown, load pdf file.
Dateigröße 154 KB
Installationsanzahl 354
Aktuelle Version 1.1
Letztes Update 2023-04-10
Veröffentlichungsdatum 2023-04-09
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler ysailist
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sailist/chatgpt-markdown-extension
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Markdown and PDF Extension",
    "version": "1.1",
    "description": "ChatGPT enhanced, support copy raw markdown, load pdf file.",
    "options_ui": {
        "page": "options.html"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/freechatgpt.chat\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ],
            "css": [
                "output.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ]
}