Examine source code of Partage d'écran SoConference

Inspect and view changes in Partage d'écran SoConference source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Partage d'écran SoConference",
  "version": "1.0",
  "description": "Partagez ce que vous voyez sur votre écran avec les autres participants de votre conférence téléphonique.",
  "author": "BJT Partners",
  "minimum_chrome_version": "34",
  "homepage_url": "http://www.soconference.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "*://www.soconference.com/*"
      ]
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ]
}