Edform for Teachers

Edform for Teachers

Import any PDF to Edform and transform it into interactive auto-graded activity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Edform for Teachers",
  "short_name": "Edform",
  "author": "Edform.com",
  "homepage_url": "https://edform.com",
  "version": "1.2",
  "description": "Import any PDF to Edform and transform it into interactive auto-graded activity.",
  "content_scripts": [
    {
      "js": [
        "is-installed.js"
      ],
      "matches": [
        "https://edform.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*/*.pdf"
      ],
      "exclude_matches": [
        "*://edform.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Edform for Teachers",
    "default_icon": "icons/128.png"
  }
}