Playmoss - Add Track Chrome Extension

Playmoss - Add Track Chrome Extension

Add songs and music videos to your Playmoss playlists from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Playmoss - Add Track Chrome Extension",
  "description": "Add songs and music videos to your Playmoss playlists from any website.",
  "version": "1.2.2",
  "browser_action": {
    "default_icon": {
      "19": "img/logo19.png",
      "38": "img/logo38.png"
    },
    "default_title": "Find tracks to add to Playmoss"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "js": [
        "js/jquery-2.1.4.min.js",
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "permissions": [
    "activeTab"
  ]
}