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": "Trade Me Plus",
"description": "A Chrome Extension that improves Trade Me (and other trading sites) with extra features",
"version": "1.0.0",
"icons": {
"16": "images\/logo-16x16.png",
"32": "images\/logo-32x32.png",
"48": "images\/logo-48x48.png",
"128": "images\/logo-128x128.png"
},
"content_scripts": [
{
"js": [
"scripts\/trademe.js"
],
"matches": [
"*:\/\/www.trademe.co.nz\/*"
]
}
],
"permissions": [
"storage",
"unlimitedStorage",
"scripting"
],
"host_permissions": [
"*:\/\/www.trademe.co.nz\/*"
],
"web_accessible_resources": [
{
"resources": [
"\/images\/*",
"settings\/*",
"\/features\/*",
"\/themes\/*"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": "images\/logo-32x32.png"
},
"background": {
"service_worker": "background\/background.js"
},
"options_ui": {
"page": "settings\/settings.html",
"open_in_tab": true
}
}