Inspect and view changes in AZ 90 Day 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",
"name": "AZ 90 Day",
"version": "1.3",
"description": "Display any Amazon product's average 90 selling price and sales rank.",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"match_about_blank": true,
"all_frames": true,
"matches": [
"*://*.amazon.com/*",
"*://*.amazon.co.uk/*",
"https://keepa.com/*",
"http://keepa.com/*"
],
"js": [
"script.js"
]
}
],
"browser_action": {
"default_icon": {
"19": "images/diamond.png"
}
},
"permissions": [
"activeTab",
"tabs"
],
"manifest_version": 2
}