ACM Beats

ACM Beats

Add songs to Beats from Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ACM Beats",
  "description": "Add songs to Beats from Chrome.",
  "version": "1.1.0",
  "page_action": {
    "default_icon": "images/icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "bower_components/jquery/dist/jquery.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "declarativeContent",
    "activeTab"
  ],
  "web_accessible_resources": [
    "popup.html",
    "bower_components/*",
    "images/*"
  ]
}