Inspect and view changes in BSW. Der Bonusmelder 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",
"author": "BSW. Der Vorteil für den Öffentlichen Dienst",
"description": "BSW. Der Bonusmelder zeigt Ihnen beim Surfen automatisch, bei welchen Shops Sie BSW-Vorteile erhalten.",
"homepage_url": "https://www.bsw.de/",
"manifest_version": 3,
"name": "BSW. Der Bonusmelder",
"version": "3.0.1",
"action": {
"default_popup": "popup.html",
"default_title": "BSW. Der Bonusmelder",
"default_icon": {
"16": "img/inactive.png",
"48": "img/inactive.png",
"128": "img/inactive.png"
}
},
"background": {
"service_worker": "background-script.js",
"type": "module"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content-script.js"
],
"matches": [
"https://www.bsw.de/*",
"https://*.bsw.de/*"
]
}
],
"host_permissions": [
"http://*/*",
"https://*/*",
"https://www.bsw.de/*",
"https://www.google.com/*"
],
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": [
"tabs",
"storage",
"scripting",
"activeTab",
"unlimitedStorage",
"webRequest"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"img/ajax-load.gif",
"img/badge.png",
"img/trackingActiveBadge.png",
"img/notYetPartnerBadge.png",
"img/stationaerBadge.png",
"img/close.png",
"img/notYetPartnerHide.png",
"img/trackingActiveHide.png",
"img/stationaerHide.png",
"img/hide.png",
"img/icon.png",
"img/bsw-google.png",
"img/bsw-google-serp.png"
]
}
]
}