Canvas PDF Window
Open files from canvas in their own window.
Cos'è Canvas PDF Window?
Canvas PDF Window è un'estensione di Chrome sviluppata da Adam Miller, e la sua funzione principale è "Open files from canvas in their own window.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Canvas PDF Window
Scarica i file di estensione Canvas PDF Window in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Canvas PDF Window |
ID | gnonhflkapkldnogkjpbbfeejikjaccl |
URL Ufficiale | https://chromewebstore.google.com/detail/canvas-pdf-window/gnonhflkapkldnogkjpbbfeejikjaccl |
Descrizione | Open files from canvas in their own window. |
Dimensione del File | 11.17 KB |
Conteggio Installazioni | 257 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-05-07 |
Data di Pubblicazione | 2018-05-07 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | Adam Miller |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |