Impero Cloud Extension

Impero Cloud Extension

Extension to provide Impero Classroom Cloud with greater power

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Impero Cloud Extension",
  "description": "Extension to provide Impero Classroom Cloud with greater power",
  "version": "1.0.0.42",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "main.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "main.js"
  ],
  "permissions": [
    "desktopCapture",
    "background"
  ],
  "icons": {
    "16": "images/c-icon-16x16px.png",
    "48": "images/c-icon-48x48px.png",
    "128": "images/c-icon-128x128px.png"
  },
  "browser_action": {
    "default_icon": "images/c-icon-128x128px.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.imperosoftware.com/*",
        "*://*.edpro.cloud/*"
      ],
      "js": [
        "middleman.js"
      ]
    }
  ]
}