Videpper Beta

Videpper Beta

Record and share videos directly in Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Videpper Beta",
  "description": "Record and share videos directly in Gmail.",
  "version": "0.1.6",
  "permissions": [
    "*://*.movenote.com/",
    "*://*.videpper.com/"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Videpper"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "uuid.js",
        "socket.io.js",
        "main.js"
      ],
      "matches": [
        "*://mail.google.com/mail/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "images/gvideomail.png",
    "images/loader.gif",
    "images/close.png"
  ]
}