YouTube New Tab

YouTube New Tab

Play your favorite videos from youtube on each new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube New Tab",
  "description": "Play your favorite videos from youtube on each new tab.",
  "version": "1.2",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/ico_19.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [
    "https://www.youtube.com/*",
    "contextMenus"
  ],
  "icons": {
    "16": "img/ico_16.png",
    "19": "img/ico_19.png",
    "32": "img/ico_32.png",
    "48": "img/ico_48.png",
    "128": "img/ico_128.png"
  },
  "web_accessible_resources": [
    "img/button_add.png"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  }
}