Sloooop

Sloooop

A simple AB looper for Spotify

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sloooop",
  "short_name": "Sloooop",
  "description": "A simple AB looper for Spotify",
  "version": "0.0.2",
  "manifest_version": 2,
  "author": "[email protected]",
  "homepage_url": "https://sloooop.com",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "declarativeContent"
  ],
  "icons": {
    "16": "images/16_activate.png",
    "32": "images/32_activate.png",
    "48": "images/48_activate.png",
    "128": "images/128_activate.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://open.spotify.com/*"
      ],
      "js": [
        "contentscript.bundle.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "images/32_0_unavailable.png"
  },
  "web_accessible_resources": [
    "/html/*",
    "/css/*",
    "/images/*",
    "/fonts/*"
  ]
}