Webinar Extension

Webinar Extension

Расширение позволяет записывать видео захватом всего экрана, включая системные элементы. Используется как самостоятельно, так и с…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Webinar Extension",
  "author": "HyperMethod.ru",
  "version": "0.0.3",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "background": {
    "scripts": [
      "background.js",
      "record.js",
      "RecordRTC.min.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "sandbox": {
    "pages": [
      "blank.html"
    ]
  },
  "icons": {
    "16": "img/icon.png",
    "22": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "permissions": [
    "desktopCapture",
    "<all_urls>",
    "tabCapture",
    "activeTab"
  ],
  "web_accessible_resources": [
    "img/icon.png"
  ],
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "Screen Capturing"
  }
}