SpotiAds by Tomer (Updated)

SpotiAds by Tomer (Updated)

Removes audio ads on Spotify™ Web Player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon_2_128.png",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "lib/sweetalert.min.js"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ]
    }
  ],
  "description": "Removes audio ads on Spotify™ Web Player",
  "icons": {
    "128": "images/icon_2_128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkcFU2k2M5tIPZwcy5562j9oySJob1cdYzjrC8AzC7BlDmz5xifwG+jzyjhhlOO/vg2WunEnS8g8XlJCzE5+U30pLykMJaH+LulXcU+ShkVqQNMNqYBhFlgfFiTmK4qurbi88fsOyjxnQHaV6Rj/KE/IJ9jgK2wgvfVqzViaTNihzefZcA3BJxr/tXH6L4uSGvaCR1t9UrAiCq3LgVImYdD5EMItNSgZ5wtOgS4yVSDJQMrES6py7XX7rMd0d6hhSuQUbsz8v2/YThgbvOyodoUg0Vwt9SeSrAqLNIKW6Vzydevu/KlGT7Ds2XKKnYae/9SDHmTRnQoDBBAix1gAN8wIDAQAB",
  "manifest_version": 2,
  "name": "SpotiAds",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://open.spotify.com/*"
  ],
  "short_name": "SpotiAdBlocker",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1.3",
  "web_accessible_resources": [
    "injected/*",
    "lib/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{798fd732-e762-491b-a401-474097f099d1}"
    }
  }
}