CBC++ : Deeply Connected Documents

CBC++ : Deeply Connected Documents

Enhance, Connect and Personalize your CBC Experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CBC++ : Deeply Connected Documents",
  "description": "Enhance, Connect and Personalize your CBC Experience.",
  "version": "0.1",
  "icons": {
    "128": "images/icon/cbc.png"
  },
  "homepage_url": "https://github.com/vdimarco/cbc-plus-plus",
  "background": {
    "page": "src/background.html"
  },
  "permissions": [
    "http://www.cbc.ca/*",
    "http://rss.cbc.ca/*",
    "http://cbc.ca/*",
    "http://feeds.gawker.com/*",
    "http://feeds.feedburner.com/*"
  ],
  "browser_action": {
    "default_popup": "/src/popup.html",
    "default_title": "CBC++",
    "default_icon": "images/icon/cbc.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://cbc.ca/*",
        "https://cbc.ca/*"
      ],
      "js": [
        "/src/content.js"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' https://cdn.mxpnl.com; object-src 'self'"
}