Big Brother 24/7 Live Feeds

Big Brother 24/7 Live Feeds

Watch the Big Brother live streams without the annoying 'I'm still here' button popping up every hour.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.0.6",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "38": "images/icon-38.png"
    },
    "default_title": "Big Brother 24/7 Live Feeds",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.cbs.com/shows/big_brother/live_feed/stream/",
        "https://*.cbs.com/shows/big_brother/live_feed/stream/"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "webNavigation"
  ]
}