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": "ChatGPT Images Exporter",
"version": "1.1.0",
"description": "Export and Download DALL\u00b7E 3 images from ChatGPT directly to your Computer, Notion, Airtable, Google Drive, and Dropbox.",
"action": {
"default_popup": "src\/pages\/popup\/index.html",
"default_icon": "icon-34.png"
},
"icons": {
"128": "icon-128.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"js": [
"src\/pages\/content\/index.js"
],
"css": [
"contentStyle.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"contentStyle.css",
"icon-128.png",
"icon-34.png"
],
"matches": []
}
]
}