Iwill Screen Share Extention

Iwill Screen Share Extention

This Chrome extension is developed primary for https://iwill.global/. It doesn't do anything except capture content of your screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Iwill Screen Share Extention",
  "author": "Iwill",
  "version": "2.1.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This Chrome extension is developed primary for https://iwill.global/. It doesn't do anything except capture content of your screen.",
  "homepage_url": "https://iwill.global/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://iwill.global/*"
      ],
      "all_frames": true,
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://iwill.global/*"
    ]
  },
  "icons": {
    "16": "iwill16.png",
    "48": "iwill48.png",
    "128": "iwill128.png"
  },
  "permissions": [
    "declarativeContent",
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}