ChatGPT Markdown and PDF Extension

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

Cos'è ChatGPT Markdown and PDF Extension?

ChatGPT Markdown and PDF Extension è un'estensione di Chrome sviluppata da ysailist, e la sua funzione principale è "ChatGPT enhanced, support copy raw markdown, load pdf file.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ChatGPT Markdown and PDF Extension

Scarica i file di estensione ChatGPT Markdown and PDF Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ChatGPT Markdown and PDF Extension ChatGPT Markdown and PDF Extension
ID fdbinkcfdihppebpojopiljcmekfedkg
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-markdown-and-pdf/fdbinkcfdihppebpojopiljcmekfedkg
Descrizione ChatGPT enhanced, support copy raw markdown, load pdf file.
Dimensione del File 154 KB
Conteggio Installazioni 354
Versione Corrente 1.1
Ultimo Aggiornamento 2023-04-10
Data di Pubblicazione 2023-04-09
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore ysailist
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sailist/chatgpt-markdown-extension
Lingue Supportate 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": [
        ""
    ]
}