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": "Auto Prompt",
"version": "0.0.1",
"description": "\ud83e\udde0 Auto Prompt \u2014 Automatically add and manage AI prompts. Switch modes, clean UI, full control \u2014 all in one lightweight extension.",
"manifest_version": 3,
"permissions": [
"sidePanel",
"storage"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https:\/\/chatgpt.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*"
],
"js": [
"content.js"
]
}
],
"side_panel": {
"default_path": "popup.html"
}
}