Short Song Streaming

Short Song Streaming

An extension to automatically skip to the next song after X seconds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "An extension to automatically skip to the next song after X seconds",
  "version": "1.1.2",
  "name": "Short Song Streaming",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "icon-black-32.png",
    "128": "icon-black-120.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.deezer.com/*/playlist/*",
        "https://open.spotify.com/playlist/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "content.styles.css",
    "icon-black-32.png",
    "icon-green-32.png",
    "icon-black-120.png",
    "icon-green-120.png"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}