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": "AI Auto Messenger",
"version": "1.02",
"description": "Send scheduled messages into an AI chat and let it work for you. (Chatgpt, Gemini are currently supported).",
"permissions": [
"scripting",
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/gemini.google.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/replit.com\/*",
"https:\/\/app.base44.com\/*",
"https:\/\/lovable.dev\/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
]
}
],
"action": {
"default_title": "Auto Messenger",
"default_icon": {
"16": "img\/hourglass_icon_stretched_16x16.png",
"32": "img\/hourglass_icon_stretched_32x32.png"
}
},
"web_accessible_resources": [
{
"resources": [
"panel.html"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "img\/hourglass_icon_stretched_16x16.png",
"32": "img\/hourglass_icon_stretched_32x32.png",
"48": "img\/hourglass_icon_stretched_48x48.png",
"128": "img\/hourglass_icon_stretched_128x128.png"
},
"background": {
"service_worker": "background.js"
}
}