to allow recording

to allow recording

Record screen, entire conference in peeps.chat site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "to allow recording",
  "short_name": "Record Peeps.Chat",
  "author": "Peeps.Chat",
  "version": "1.2",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Record screen, entire conference in peeps.chat site",
  "homepage_url": "https://peeps.chat",
  "background": {
    "scripts": [
      "background.js",
      "RecordRTC.min.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/main-icon.png",
    "default_title": "Record Screen"
  },
  "icons": {
    "16": "images/main-icon.png",
    "22": "images/main-icon.png",
    "32": "images/main-icon.png",
    "48": "images/main-icon.png",
    "128": "images/main-icon.png"
  },
  "permissions": [
    "desktopCapture",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "images/main-icon.png"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  }
}