No Embedding

No Embedding

Loads PDF lecture notes in a new tab when they otherwise would have been embedded into the csmoodle page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "No Embedding",
  "version": "1.0",
  "description": "Loads PDF lecture notes in a new tab when they otherwise would have been embedded into the csmoodle page.",
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "icons": {
    "32": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://csmoodle.ucd.ie/moodle/mod/resource/view.php?id=*"
      ],
      "js": [
        "jquery.js",
        "script.js"
      ]
    }
  ]
}