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": "YYZ Prep - Amazon Order Extractor",
"version": "1.9.1",
"description": "Extract Amazon order information and send to YYZ Prep with one click",
"author": "YYZ Prep",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "YYZ Prep Order Extractor"
},
"permissions": [
"activeTab",
"storage",
"scripting",
"tabs",
"alarms",
"notifications"
],
"host_permissions": [
"*:\/\/*.amazon.ca\/*"
],
"background": {
"service_worker": "background\/service-worker.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.amazon.ca\/gp\/css\/order-history*",
"*:\/\/*.amazon.ca\/gp\/your-account\/order-history*",
"*:\/\/*.amazon.ca\/your-orders\/orders*"
],
"js": [
"common\/extraction_util.js",
"common\/strategy_engine.js",
"common\/strategies.js",
"content\/content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"config.js"
],
"matches": [
"*:\/\/*.amazon.ca\/*"
]
}
]
}