Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Feb 15, 2026.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "MCP Auto Accept for ChatGPT",
"version": "1.2.1",
"description": "Automatically checks the 'don't ask again' checkbox and clicks confirm in ChatGPT dialogs. Toggle on\/off with one click.",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/chat.openai.com\/*",
"*:\/\/chatgpt.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
}