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": "Amazon Address Autocopy",
"version": "1.0",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.amazon.com\/gp\/buy\/addressselect\/handlers\/display.html*"
],
"js": [
"content.js"
]
},
{
"matches": [
"https:\/\/www.amazon.com\/gp\/buy\/spc\/handlers\/display.html*"
],
"js": [
"content.js"
]
},
{
"matches": [
"https:\/\/www.amazon.com\/a\/addresses\/add?ref=ya_address_book_add_button*"
],
"js": [
"content-addaddress.js"
]
},
{
"matches": [
"https:\/\/zdntracker.com\/userpanel\/dashboard\/tracking.php*"
],
"js": [
"content-tracking.js"
]
}
]
}