Codec

Codec

A chrome extension to binge watch and learn to code at the same time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Codec",
  "description": "A chrome extension to binge watch and learn to code at the same time.",
  "version": "1.1",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*.hulu.com/*",
    "*://*.netflix.com/*",
    "tabs",
    "*://*.jquery.com/*"
  ]
}