Inspect and view changes in Shoplover - Comparateur Amazon de prix 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": "Shoplover - Comparateur Amazon de prix",
"version": "1.4.13",
"description": "Une extension pour comparer les prix sur tous les marketplace amazon en un clic.",
"icons": {
"128": "assets/logo.png"
},
"manifest_version": 3,
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.amazon.fr/*",
"*://*.amazon.it/*",
"*://*.amazon.de/*",
"*://*.amazon.es/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.com.be/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"index.html"
],
"matches": [
"*://*.amazon.fr/*",
"*://*.amazon.it/*",
"*://*.amazon.de/*",
"*://*.amazon.es/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.com.be/*"
]
}
],
"externally_connectable": {
"matches": [
"*://*.amazon.fr/*",
"*://*.amazon.it/*",
"*://*.amazon.de/*",
"*://*.amazon.es/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.com.be/*",
"http://localhost:4200/*",
"https://shoplover-chrome-extension.fly.dev/*"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}