Follow My Sound

Follow My Sound

Extension that allows to Follow/Like all artists in any SoundCloud page, and search by tag

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Follow My Sound",
  "description": "Extension that allows to Follow/Like all artists in any SoundCloud page, and search by tag",
  "version": "1.0",
  "permissions": [
    "tabs",
    "https://*.soundcloud.com/*",
    "http://*.soundcloud.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icons/logo.png",
      "38": "images/icons/logo.png"
    },
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "*://*.premiumfirstcare.co.uk/*/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.soundcloud.com/*"
      ],
      "js": [
        "GetFollowings.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icons/logo.png",
    "19": "images/icons/logo.png",
    "38": "images/icons/logo.png",
    "64": "images/icons/logo.png",
    "128": "images/icons/logo.png"
  }
}