Picture for YouTube Video (download)

Picture for YouTube Video (download)

The extension allows you to view and download picture to video on Yotube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_chrome_extension_name__",
  "version": "1.0.1",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_chrome_extension_description__",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "16": "/img/glaz.png",
    "128": "/img/glaz.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/css/style_background.css"
      ],
      "js": [
        "jquery.min.js",
        "jquery-ui.js",
        "download.js",
        "background.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "jquery.min.js"
    ]
  },
  "web_accessible_resources": [
    "/*",
    "*://*"
  ],
  "browser_action": {
    "default_icon": "/img/glaz.png"
  },
  "content_security_policy": "object-src 'self' https://money.yandex.ru https://img.youtube.com; script-src 'self' 'unsafe-eval' https://s.ytimg.com/yts/jsbin/www-widgetapi-vflxuRgW5/www-widgetapi.js "
}