Gambino Gunshot Gainer

Gambino Gunshot Gainer

An extension to add gunshots back to 'This is America' on spotify

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gambino Gunshot Gainer",
  "version": "1.0",
  "description": "An extension to add gunshots back to 'This is America' on spotify",
  "content_scripts": [
    {
      "js": [
        "thirdparty/jquery-3.3.1.min.js",
        "content.js"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "gunshot.mp3",
    "gunshot2.mp3"
  ],
  "permissions": [
    "contentSettings",
    "https://open.spotify.com/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2
}