StreamParty

StreamParty

Watch streams remotely with the people you care about

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "description": "Watch streams remotely with the people you care about",
  "short_name": "SP",
  "manifest_version": 2,
  "default_locale": "en",
  "optional_permissions": [
    "https://*/*"
  ],
  "version": "2.0.6",
  "web_accessible_resources": [
    "app.html",
    "content/content_script.js",
    "content/page/page-context.js"
  ],
  "name": "StreamParty",
  "icons": {
    "16": "assets/icon/icon_16.png",
    "48": "assets/icon/icon_48.png",
    "128": "assets/icon/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/icon/icon_16.png",
      "24": "assets/icon/icon_24.png",
      "32": "assets/icon/icon_32.png"
    },
    "default_title": "StreamParty"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.streamparty.com/*"
      ],
      "js": [
        "content/website-script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "webNavigation",
    "https://www.streamparty.com/*"
  ]
}