The Prodigy New Tab

The Prodigy New Tab

Videos from The Prodigy YouTube channel directly on New Tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Prodigy New Tab",
  "description": "Videos from The Prodigy YouTube channel directly on New Tab.",
  "version": "1.1",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "scripts": [
      "jquery.js",
      "bg.js"
    ]
  },
  "permissions": [
    "https://www.youtube.com/*"
  ],
  "browser_action": {
    "default_icon": "images/ico19.png"
  },
  "icons": {
    "16": "images/ico16.png",
    "19": "images/ico19.png",
    "32": "images/ico32.png",
    "48": "images/ico48.png",
    "128": "images/ico128.png"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  }
}