Inspect and view changes in Delivery Window Notifier source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Delivery Window Notifier",
"version": "0.0.1",
"description": "Find delivery window for online orders",
"background": {
"scripts": [
"src/background.js"
],
"persistant": false
},
"content_scripts": [
{
"matches": [
"https://www.amazon.com/gp/buy/shipoptionselect/handlers/*"
],
"js": [
"src/main.js"
],
"run_at": "document_end"
}
],
"permissions": [
"notifications"
],
"icons": {
"24": "img/groceries-24x24.png",
"128": "img/groceries-128x128.png"
},
"browser_action": {
"default_title": "Delivery Window Notifier"
}
}