SpotiAds - Ads remover for Spotify™

SpotiAds - Ads remover for Spotify™

Removes audio ads on Spotify™ Web Player

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SpotiAds - Ads remover for Spotify™",
  "short_name": "SpotiAdBlocker",
  "description": "Removes audio ads on Spotify™ Web Player",
  "version": "1.1.6",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://open.spotify.com/*"
  ],
  "icons": {
    "128": "images/icon_2_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon_2_128.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "lib/sweetalert.min.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "injected/*",
    "lib/*"
  ]
}