iPrevYou

iPrevYou

Preview youtube videos on the spot without leaving the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "iprevyou"
  },
  "description": "Preview youtube videos on the spot without leaving the page",
  "web_accessible_resources": [
    "scripts/*",
    "fonts/*",
    "main.css",
    "popup.js",
    "plugin/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://*.youtube.com/*",
        "*://youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "manifest_version": 2,
  "name": "iPrevYou",
  "short_name": "iPrevYou",
  "homepage_url": "http://iprevyou.com",
  "permissions": [
    "*://*/*",
    "background",
    "management",
    "tabs",
    "storage",
    "*://*/*",
    "<all_urls>",
    "contextMenus",
    "unlimitedStorage"
  ],
  "version": "1.0.6",
  "incognito": "spanning",
  "minimum_chrome_version": "24",
  "icons": {
    "128": "plugin/iprevyou.png"
  }
}