A big sales dashboard for Merch by Amazon / Merch on Demand.
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",
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"name": "Big Dashboard for Merch by Amazon",
"version": "1.2.6",
"manifest_version": 3,
"description": "A big sales dashboard for Merch by Amazon / Merch on Demand.",
"permissions": [
"storage",
"unlimitedStorage",
"alarms",
"tabs",
"notifications",
"offscreen"
],
"web_accessible_resources": [
{
"resources": [
"app/*"
],
"matches": [
"https://merch.amazon.com/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://merch.amazon.com/*"
],
"run_at": "document_idle",
"css": [
"app/navLink.css"
],
"js": [
"app/plugins/jquery.js",
"app/navLink.js"
]
},
{
"matches": [
"https://merch.amazon.com/resource/bigdash/*"
],
"run_at": "document_idle",
"js": [
"app/inset.js"
],
"css": [
"app/inset.css"
]
}
],
"host_permissions": [
"*://*.gumroad.com/*",
"*://*.amazon.com/*",
"*://*.amazon.de/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.it/*",
"*://*.amazon.fr/*",
"*://*.amazon.es/*",
"*://*.amazon.co.jp/*",
"*://*.frankfurter.app/*"
],
"icons": {
"256": "assets/icon256.png"
},
"action": {
"default_icon": "assets/icon256.png"
}
}