Inspect and view changes in Spotify Ads Blocker Plus 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": "Spotify Ads Blocker Plus",
"version": "1.0.0",
"description": "A free extension that improves your Spotify experience by effectively blocking ads. Compatible with the Spotify web player.",
"permissions": [],
"host_permissions": [
"*://open.spotify.com/*"
],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://open.spotify.com/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_start"
}
],
"action": {
"default_icon": "images/icon128.png",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"main.js"
],
"matches": [
"https://open.spotify.com/*"
]
}
],
"manifest_version": 3
}