Examine source code of SmartEdu Képernyőmegosztás

Inspect and view changes in SmartEdu Képernyőmegosztás 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",
  "author": "SmartEdu",
  "name": "SmartEdu Képernyőmegosztás",
  "short_name": "SmartEdu",
  "description": "Ezzel a bővítménnyel megoszthatja képernyőjét a SmartEdu rendszeren belül.",
  "background": {
    "persistent": false,
    "scripts": [
      "background-script.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://*.smartuni.xyz/*",
        "https://*.smartedu.hu/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "smartedu_128.png"
  },
  "homepage_url": "https://smartedu.hu",
  "minimum_chrome_version": "34",
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "smartedu_128.png"
  ],
  "manifest_version": 2,
  "version": "1.2"
}