Browser Player

Browser Player

One controller for your internet video and music

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Browser Player",
  "description": "One controller for your internet video and music",
  "version": "0.6.1",
  "background": {
    "scripts": [
      "functions.js",
      "init.js",
      "main.js",
      "controller.js",
      "button.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "functions.js",
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "512": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Nothing playing",
    "icon_credit": "http://www.flaticon.com/authors/freepik"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ]
}