BroadcasterPro

BroadcasterPro

Avoid the awkward slow downs that come with reading live comments on your tiny phone screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BroadcasterPro",
  "description": "Avoid the awkward slow downs that come with reading live comments on your tiny phone screen.",
  "browser_action": {
    "default_icon": "off.png",
    "default_title": "BroadcasterPro"
  },
  "icons": {
    "32": "off.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "version": "2.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.periscope.tv/*"
      ],
      "run_at": "document_start",
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "script.js",
    "styles.css"
  ]
}