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": "Zoom Chat Game by @soyeljef",
"version": "1.3",
"description": "Programa y env\u00eda mensajes en Zoom de forma automatizada. Ideal para webinars, cursos y eventos en l\u00ednea.",
"permissions": [
"scripting",
"storage",
"activeTab",
"tabs"
],
"host_permissions": [
"https:\/\/*.zoom.us\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "login.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.zoom.us\/*"
],
"js": [
"content.js"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/*.zoom.us\/*"
]
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Z",
"mac": "Command+Shift+Z"
},
"description": "Abrir la extensi\u00f3n"
}
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"login.html"
],
"matches": [
"<all_urls>"
]
}
]
}