Easy-Watch for YouTube

Easy-Watch for YouTube

To provide three modes of a quick pop-up, multi-screen and cloud-save for watching YouTube videos easily and conveniently

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "incognito": "split",
  "name": "Easy-Watch for YouTube",
  "version": "1.4.9",
  "manifest_version": 2,
  "description": "To provide three modes of a quick pop-up, multi-screen and cloud-save for watching YouTube videos easily and conveniently",
  "permissions": [
    "background",
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "event.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "jquery-ui.min.css",
        "start.css"
      ],
      "js": [
        "jquery-ui.min.js",
        "jquery.canvasjs.min.js",
        "start.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "http://*/*",
    "https://*/*",
    "images/*",
    "welcome/*",
    "chrome-extension://*/*"
  ],
  "browser_action": {
    "default_popup": "action.html",
    "default_title": "Easy-Watch for YouTube",
    "default_icon": "icon128.png",
    "icons": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "toggle_screenFix": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Ctrl+Shift+F"
      },
      "description": "Toggle feature screen Fixed"
    },
    "toggle_playlists": {
      "suggested_key": {
        "default": "Alt+Shift+L",
        "mac": "Alt+Shift+L"
      },
      "description": "Toggle feature playlists"
    },
    "toggle_pipmode": {
      "suggested_key": {
        "default": "Ctrl+Shift+A",
        "mac": "Ctrl+Shift+A"
      },
      "description": "Toggle feature pip mode"
    },
    "toggle_autoplay": {
      "suggested_key": {
        "default": "Alt+Shift+P",
        "mac": "Alt+Shift+P"
      },
      "description": "Toggle feature autoplay"
    }
  }
}