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": "Onially x 8lab - Gmail Customer Support Assistant for Shopify",
"version": "1.3",
"description": "Display Shopify order information directly in Gmail",
"permissions": [
"activeTab",
"storage",
"scripting",
"webNavigation",
"notifications"
],
"host_permissions": [
"https:\/\/mail.google.com\/*",
"https:\/\/*.myshopify.com\/*",
"https:\/\/admin.shopify.com\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"all_frames": false,
"run_at": "document_end"
},
{
"matches": [
"https:\/\/admin.shopify.com\/store\/*\/orders*"
],
"js": [
"tracking-button.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"tracking-button.js",
"settings.html",
"settings.js",
"modal.js",
"images\/*"
],
"matches": [
"https:\/\/admin.shopify.com\/*",
"<all_urls>"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}