foodora-notify/chrome/manifest.json
2023-02-05 14:45:05 +01:00

16 lines
No EOL
369 B
JSON

{
"name": "Foodora Notify",
"description": "Get notified when your Foodora order status changes",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"notifications"
],
"content_scripts": [{
"matches": ["https://www.foodora.se/order-tracking/*"],
"js": ["assets/js/content.js"]
}],
"background": {
"service_worker": "assets/js/background.js"
}
}