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": "Waiter AI",
"version": "2.3.2",
"description": "AI-powered message variations for Social Media!",
"permissions": [
"storage",
"identity",
"sidePanel",
"activeTab",
"clipboardRead",
"clipboardWrite"
],
"host_permissions": [
"*:\/\/web.whatsapp.com\/*",
"*:\/\/x.com\/*",
"*:\/\/www.x.com\/*",
"*:\/\/www.instagram.com\/*",
"*:\/\/www.linkedin.com\/*",
"*:\/\/*.reddit.com\/*"
],
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"side_panel": {
"default_path": "sidepanel\/panel.html"
},
"background": {
"service_worker": "background\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/web.whatsapp.com\/*"
],
"js": [
"content\/utils\/common.js",
"content\/messageProcessor.js",
"content\/platforms\/whatsapp.js",
"content\/content.js"
]
},
{
"matches": [
"*:\/\/x.com\/*",
"*:\/\/www.x.com\/*"
],
"js": [
"content\/utils\/common.js",
"content\/messageProcessor.js",
"content\/platforms\/x.js",
"content\/content.js"
]
},
{
"matches": [
"*:\/\/www.instagram.com\/*"
],
"js": [
"content\/utils\/common.js",
"content\/messageProcessor.js",
"content\/platforms\/instagram.js",
"content\/content.js"
]
},
{
"matches": [
"*:\/\/linkedin.com\/*",
"*:\/\/www.linkedin.com\/*"
],
"js": [
"content\/utils\/common.js",
"content\/messageProcessor.js",
"content\/platforms\/linkedin.js",
"content\/content.js"
]
},
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"content\/utils\/common.js",
"content\/messageProcessor.js",
"content\/platforms\/reddit.js",
"content\/content.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"oauth2": {
"client_id": "526561663746-hmvcmfg1g54e9j9dehbj6sbvbp4icuj2.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/userinfo.profile"
]
}
}