TubeCapture

TubeCapture

An extension for the video capture website TubeCapture.Net.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TubeCapture",
  "version": "1.2",
  "manifest_version": 2,
  "description": "An extension for the video capture website TubeCapture.Net.",
  "background": {
    "scripts": [
      "js/feed.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/back.js"
      ],
      "matches": [
        "https://youtube.com/*",
        "http://vimeo.com/*",
        "http://tubecapture.net/*"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "page_action": {
    "default_icon": "images/icon16.png",
    "default_title": "TubeCapture",
    "default_popup": "feed.html"
  },
  "permissions": [
    "tabs",
    "https://youtube.com/*",
    "http://vimeo.com/*"
  ]
}