soma fm Favorites

soma fm Favorites

Favorite songs in the soma fm pop-up player. Favorites are synched with your account and can be saved from within the options panel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "soma fm Favorites",
  "short_name": "soma fm Favs",
  "description": "Favorite songs in the soma fm pop-up player. Favorites are synched with your account and can be saved from within the options panel.",
  "version": "1.0",
  "icons": {
    "16": "assets/soma-logo16.png",
    "48": "assets/soma-logo48.png"
  },
  "options_page": "options.html",
  "permissions": [
    "http://somafm.com/",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "assets/app.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://somafm.com/popup/*"
      ],
      "run_at": "document_end",
      "css": [
        "assets/inject.css"
      ],
      "js": [
        "assets/jquery.min.js",
        "assets/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/saved.png",
    "assets/not-saved.png"
  ]
}