Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"manifest_version": 3,
"name": "YYZ Prep Center Helper",
"version": "1.0.24",
"description": "Custom tools for YYZ Prep Center operations including queue checking and shipment management",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"notifications",
"scripting",
"activeTab"
],
"host_permissions": [
"https:\/\/*.yyzprep.ca\/*",
"https:\/\/*.veeqo.com\/*",
"https:\/\/*.up.railway.app\/*",
"http:\/\/localhost:3010\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "scripts\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.yyzprep.ca\/*"
],
"js": [
"scripts\/config.js",
"scripts\/auth.js",
"scripts\/mergeShipments.js",
"scripts\/buttonAppender.js"
]
},
{
"matches": [
"https:\/\/*.veeqo.com\/*"
],
"js": [
"scripts\/veeqoOrderExtractor.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"scripts\/*"
],
"matches": [
"https:\/\/*.veeqo.com\/*"
]
}
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"author": "YYZ Prep Center",
"homepage_url": "https:\/\/yyzprep.ca",
"minimum_chrome_version": "88"
}