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 Models for Chrome ",
"description": "Use this extension to switch between models like GPT-5, GPT Mini, and GPT Instant based on your requirement ",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"storage",
"notifications"
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"content.js",
"injectscript.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "ChatGPT Models"
},
"web_accessible_resources": [
{
"resources": [
"content.js",
"injectscript.js"
],
"matches": [
"<all_urls>"
]
}
]
}