Canvas PDF Window

Canvas PDF Window

Open files from canvas in their own window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Canvas PDF Window",
  "version": "1.0",
  "description": "Open files from canvas in their own window.",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instructure.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "share-symbol-32.png"
  },
  "icons": {
    "16": "share-symbol-16.png",
    "32": "share-symbol-32.png",
    "48": "share-symbol-64.png",
    "128": "share-symbol-128.png"
  },
  "manifest_version": 2
}