Inspect and view changes in vendorcentral 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
{
"name": "vendorcentral",
"description": "Amazon order sku download tool!",
"manifest_version": 3,
"version": "1.0",
"permissions": [
"tabs",
"scripting",
"webNavigation",
"activeTab",
"webRequest",
"notifications",
"storage"
],
"icons": {
"16": "amazon.png",
"48": "amazon.png"
},
"content_scripts": [
{
"js": [
"z.js"
],
"matches": [
"https://vendorcentral.amazon.me/*"
]
}
],
"host_permissions": [
"https://vendorcentral.amazon.me/"
],
"background": {
"service_worker": "bg.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}