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",
"description": "Filters products based on country of origin!",
"version": "1.1.7",
"manifest_version": 3,
"name": "Amazon Country of origin Filter",
"options_page": "options.html",
"background": {
"service_worker": "background.bundle.js"
},
"icons": {
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.amazon.in\/*",
"https:\/\/www.amazon.es\/*",
"https:\/\/www.amazon.com\/*",
"https:\/\/www.amazon.de\/*",
"https:\/\/www.amazon.co.uk\/*",
"https:\/\/www.amazon.ca\/*",
"https:\/\/www.amazon.com.mx\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"permissions": [
"storage"
]
}