Inspect and view changes in Product Relister for Mercari 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": "Product Relister for Mercari",
"description": "Boost sales on Mercari by relisting your products in a snap! Simply visit the listing you want to relist and click the icon.",
"version": "0.0.13",
"manifest_version": 3,
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"*://*.mercari.com/*",
"*://*.mercdn.net/*"
],
"content_scripts": [
{
"matches": [
"https://*.mercari.com/sell/",
"https://*.mercari.com/sell"
],
"js": [
"import.js",
"sentry.js"
]
}
],
"action": {}
}