Canvas PDF Window

Open files from canvas in their own window.

What is Canvas PDF Window?

Canvas PDF Window is a Chrome extension developed by Adam Miller, and its main feature is "Open files from canvas in their own window.".

Extension Screenshots

screenshot
screenshot

Download Canvas PDF Window Extension CRX File

Download Canvas PDF Window extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This is a simple Chrome extension that will open PDFs and other files in Chrome's default pdf viewer instead of Canvas' embedded viewer.

Icons made by Dave Gandy from www.flaticon.com is licensed by CC 3.0 BY                    

Extension Basic Information

Name Canvas PDF Window Canvas PDF Window
ID gnonhflkapkldnogkjpbbfeejikjaccl
Official URL https://chromewebstore.google.com/detail/canvas-pdf-window/gnonhflkapkldnogkjpbbfeejikjaccl
Description Open files from canvas in their own window.
File Size 11.17 KB
Installation Count 257
Current Version 1.0
Last Updated 2018-05-07
Publish Date 2018-05-07
Rating 1.00/5 Total 1 Ratings
Developer Adam Miller
Email [email protected]
Payment Type free
Supported Languages en-US
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
}