We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details.
{ "manifest_version": 2, "name": "ChatGPT Markdown Exporter", "version": "1.0", "description": "Export ChatGPT conversation to Markdown", "permissions": ["activeTab", "cookies", "https://chat.openai.com/", "tabs"], "content_scripts": [ { "matches": ["https://chat.openai.com/chat/"], "js": ["content_script.js"] } ], "background": { "scripts": ["background_script.js"], "persistent": false }, "icons": { "48": "icon48.png" } }
The text was updated successfully, but these errors were encountered:
看信息是这个版本要被作废了。
Sorry, something went wrong.
No branches or pull requests
Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details.
{
"manifest_version": 2,
"name": "ChatGPT Markdown Exporter",
"version": "1.0",
"description": "Export ChatGPT conversation to Markdown",
"permissions": ["activeTab", "cookies", "https://chat.openai.com/", "tabs"],
"content_scripts": [
{
"matches": ["https://chat.openai.com/chat/"],
"js": ["content_script.js"]
}
],
"background": {
"scripts": ["background_script.js"],
"persistent": false
},
"icons": {
"48": "icon48.png"
}
}
The text was updated successfully, but these errors were encountered: