Askbe.net

Askbe.net

This is a extension for easy implementation of screen sharing for WebRTC

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Askbe.net",
  "short_name": "Askbe",
  "version": "1.0",
  "manifest_version": 2,
  "description": "This is a extension for easy implementation of screen sharing for WebRTC",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "desktopCapture",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.askbe.net/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}