Canvas PDF Window
Open files from canvas in their own window.
Wat is Canvas PDF Window?
Canvas PDF Window is een Chrome-extensie ontwikkeld door Adam Miller, en de belangrijkste functie is "Open files from canvas in their own window.".
Extensie Screenshots
Download het CRX-bestand van de extensie Canvas PDF Window
Download Canvas PDF Window-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Canvas PDF Window |
ID | gnonhflkapkldnogkjpbbfeejikjaccl |
Officiële URL | https://chromewebstore.google.com/detail/canvas-pdf-window/gnonhflkapkldnogkjpbbfeejikjaccl |
Beschrijving | Open files from canvas in their own window. |
Bestandsgrootte | 11.17 KB |
Aantal Installaties | 257 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2018-05-07 |
Publicatiedatum | 2018-05-07 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Adam Miller |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |