KEYSET For Education

KEYSET For Education

Feedback from teachers is powerful. Now it’s easy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "KEYSET For Education",
  "short_name": "Keyset",
  "version": "2.4.0.00",
  "version_name": "2.4.0",
  "description": "Feedback from teachers is powerful. Now it’s easy.",
  "icons": {
    "16": "image/keyset16.png",
    "32": "image/keyset32.png",
    "48": "image/keyset48.png",
    "64": "image/keyset64.png",
    "128": "image/keyset128.png"
  },
  "author": "Key Understanding LLC",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "exec-command.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "util.js",
        "content.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "util.js",
        "clipboard-frame-inject.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "storage",
    "unlimitedStorage",
    "tabs",
    "scripting",
    "alarms"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "Keyset",
    "default_popup": "index.html",
    "default_icon": {
      "16": "image/keyset16.png",
      "32": "image/keyset32.png",
      "48": "image/keyset48.png",
      "64": "image/keyset64.png",
      "128": "image/keyset128.png"
    }
  },
  "options_ui": {
    "page": "index.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "util.js",
        "clipboard-frame.js",
        "clipboard-frame.html"
      ],
      "matches": [
        "*://*/*"
      ],
      "extension_ids": []
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://getkeyset.com/*",
      "https://*.getkeyset.com/*"
    ]
  }
}