ChatGPT Markdown and PDF Extension

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

什么是ChatGPT Markdown and PDF Extension?

ChatGPT Markdown and PDF Extension是由ysailist开发的Chrome扩展程序,该扩展的主要功能是“ChatGPT enhanced, support copy raw markdown, load pdf file.”。

扩展截图

screenshot
screenshot

下载ChatGPT Markdown and PDF Extension扩展crx文件

下载ChatGPT Markdown and PDF Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 ChatGPT Markdown and PDF Extension ChatGPT Markdown and PDF Extension
ID fdbinkcfdihppebpojopiljcmekfedkg
官方URL https://chromewebstore.google.com/detail/chatgpt-markdown-and-pdf/fdbinkcfdihppebpojopiljcmekfedkg
简介 ChatGPT enhanced, support copy raw markdown, load pdf file.
文件大小 154 KB
安装次数 354
当前版本 1.1
更新时间 2023-04-10
上架时间 2023-04-09
评分 1.00/5 共1次评分
开发者 ysailist
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/sailist/chatgpt-markdown-extension
支持的语言 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": [
        ""
    ]
}