Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Export ChatGPT Conversations (MarkDown and Plain Text)",
"version": "1.0",
"description": "Export your ChatGPT conversations into a well-formatted markdown, ready for Notion, Google Docs, or your preferred note-taking app.",
"permissions": [
"clipboardRead",
"clipboardWrite"
],
"content_scripts": [
{
"matches": [
"*:\/\/chat.openai.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "images\/icon16.png"
},
"web_accessible_resources": [
{
"resources": [
"bundle.js"
],
"matches": [
"*:\/\/chat.openai.com\/*"
]
}
]
}