Thumbs-preview for Youtube™

Thumbs-preview for Youtube™

Shows multiple previews of a Youtube-video, when hovering on video-thumbnails on Youtube.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Thumbs-preview for Youtube™",
  "description": "Shows multiple previews of a Youtube-video, when hovering on video-thumbnails on Youtube.com.",
  "version": "0.2.1",
  "author": "Seb Nilsson",
  "homepage_url": "http://sebnilsson.com",
  "permissions": [
    "http://*.youtube.com/*",
    "https://*.youtube.com/*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.2.0.min.js",
        "content.js"
      ],
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}