ChatGPT Markdown and PDF Extension

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

Hvad er ChatGPT Markdown and PDF Extension?

ChatGPT Markdown and PDF Extension er en Chrome-udvidelse udviklet af ysailist, og dens hovedfunktion er "ChatGPT enhanced, support copy raw markdown, load pdf file.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download ChatGPT Markdown and PDF Extension-udvidelses-CRX-fil

Download ChatGPT Markdown and PDF Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn ChatGPT Markdown and PDF Extension ChatGPT Markdown and PDF Extension
ID fdbinkcfdihppebpojopiljcmekfedkg
Officiel URL https://chromewebstore.google.com/detail/chatgpt-markdown-and-pdf/fdbinkcfdihppebpojopiljcmekfedkg
Beskrivelse ChatGPT enhanced, support copy raw markdown, load pdf file.
Filstørrelse 154 KB
Antal Installationer 354
Nuværende Version 1.1
Senest Opdateret 2023-04-10
Udgivelsesdato 2023-04-09
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler ysailist
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/sailist/chatgpt-markdown-extension
Understøttede Sprog 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": [
        ""
    ]
}