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": "GPTSeek - ChatGPT to DeepSeek Exporter",
"version": "0.0.2",
"description": "Export ChatGPT chats to DeepSeek in one click! Save conversations in Markdown format to stay organized and ready to use.",
"permissions": [
"activeTab",
"scripting",
"clipboardWrite"
],
"host_permissions": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.deepseek.com\/*"
],
"action": {
"default_title": "GPTSeek Exporter",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"libs\/turndown.min.js",
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"styles.css"
],
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
]
}
]
}