Fix for SoundCloud

Fix for SoundCloud

This extension will fix seeking / skipping issues in SoundCloud

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fix for SoundCloud",
  "manifest_version": 2,
  "version": "13.0",
  "description": "This extension will fix seeking / skipping issues in SoundCloud",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "SCFix"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "book.css"
      ],
      "js": [
        "bookmarklet.js"
      ]
    }
  ]
}