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": "Auto-confirm for ChatGPT Actions",
"version": "1.1.1",
"description": "Automatically clicks the Confirm button on Actions in Custom GPTs in ChatGPT.",
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/g\/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_icon": "icon_off.png",
"default_popup": "popup.html"
},
"icons": {
"128": "icon_off.png"
}
}