OpenDownload

OpenDownload

Open all accessible video files in new tabs. Displays a Linux command to download the video if it uses a blob url.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "OpenDownload",
  "version": "0.3.3",
  "description": "Open all accessible video files in new tabs. Displays a Linux command to download the video if it uses a blob url.",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}