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": "My Assistant",
"version": "1.1.10",
"description": "Embeds MyAssistant in a sidebar panel",
"permissions": [
"sidePanel",
"cookies",
"activeTab"
],
"host_permissions": [
"https:\/\/myassistant.walmart.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Open MyAssistant Sidebar"
},
"side_panel": {
"default_path": "sidebar.html"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'wasm-unsafe-eval'; frame-src https:\/\/myassistant.walmart.com\/ https:\/\/pfedcert.wal-mart.com\/ https:\/\/fedcert.wal-mart.com\/ https:\/\/auth.wal-mart.com\/ https:\/\/sso.wal-mart.com\/ *;"
},
"content_scripts": [
{
"matches": [
"https:\/\/myassistant.walmart.com\/*",
"https:\/\/homeoffice-chatbot-service.walmart.com\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}