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": "Crafter",
"version": "1.0.4",
"description": "Design prompts & templates for ChatGPT image generation.",
"permissions": [
"activeTab",
"scripting",
"storage",
"identity",
"offscreen"
],
"oauth2": {
"client_id": "67134124930-oihpq2mm6hln9c38opol59ebiukdv3qr.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile"
]
},
"host_permissions": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*"
],
"action": {
"default_title": "Open Sidebar",
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"content.js"
],
"matches": [
"<all_urls>"
]
}
]
}