ChatGPT Markdown and PDF Extension

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

Qu'est-ce que ChatGPT Markdown and PDF Extension ?

ChatGPT Markdown and PDF Extension est une extension Chrome développée par ysailist, et sa fonction principale est "ChatGPT enhanced, support copy raw markdown, load pdf file.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPT Markdown and PDF Extension

Téléchargez les fichiers d'extension ChatGPT Markdown and PDF Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ChatGPT Markdown and PDF Extension ChatGPT Markdown and PDF Extension
ID fdbinkcfdihppebpojopiljcmekfedkg
URL Officiel https://chromewebstore.google.com/detail/chatgpt-markdown-and-pdf/fdbinkcfdihppebpojopiljcmekfedkg
Description ChatGPT enhanced, support copy raw markdown, load pdf file.
Taille du Fichier 154 KB
Nombre d'Installations 354
Version Actuelle 1.1
Dernière Mise à Jour 2023-04-10
Date de Publication 2023-04-09
Évaluation 1.00/5 Total 1 Évaluations
Développeur ysailist
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sailist/chatgpt-markdown-extension
Langues Prises en Charge 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": [
        ""
    ]
}