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",
"name": "ChatGPT Table Export",
"description": "Export tables into your favorite formats within the ChatGPT dialog with an easy click of a button.",
"homepage_url": "https:\/\/anytable.io\/",
"version": "1.1",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_title": "ChatGPT Table Export"
},
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"background": {
"service_worker": "ExtPay\/background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"css": [
"content.css"
],
"matches": [
"*:\/\/*.chatgpt.com\/*",
"*:\/\/chatgpt.com\/*"
]
},
{
"run_at": "document_idle",
"js": [
"ExtPay\/ExtPay.js",
"content.js"
],
"matches": [
"*:\/\/*.chatgpt.com\/*",
"*:\/\/chatgpt.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/sparkles.svg",
"assets\/download.svg"
],
"matches": [
"*:\/\/*.chatgpt.com\/*",
"*:\/\/chatgpt.com\/*"
]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.chatgpt.com\/*",
"*:\/\/chatgpt.com\/*"
]
}