CenterServ Plugin

CenterServ Plugin

This plugin cooperates with the CenterServ streamer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CenterServ Plugin",
  "description": "This plugin cooperates with the CenterServ streamer",
  "version": "2.1",
  "web_accessible_resources": [
    "*.png",
    "*.PNG"
  ],
  "browser_action": {
    "default_icon": "logo.png"
  },
  "background": {
    "scripts": [
      "task.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "http://streamer.centerserv.com/",
    "http://www.centerserv.com/",
    "https://ajax.googleapis.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://streamer.centerserv.com/*"
      ],
      "js": [
        "jQuery.min.js",
        "fixPage.js"
      ],
      "all_frames": true
    }
  ]
}