Google Forms Image Viewer
a tool to allow image files to be viewed on a google form response
Cos'è Google Forms Image Viewer?
Google Forms Image Viewer è un'estensione di Chrome sviluppata da alex, e la sua funzione principale è "a tool to allow image files to be viewed on a google form response".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Forms Image Viewer
Scarica i file di estensione Google Forms Image Viewer 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
Use this tool to render images on your Google forms (like signatures) when you go to print them. When there is a File Upload field in the form, navigate to an Individual response. Click the extension icon and scan for images. If any are found, you'll see them and can print using the Print button.
Informazioni di Base sull'Estensione
Nome | Google Forms Image Viewer |
ID | hfmflfabnobgcjjbfddlackbpjmnpgij |
URL Ufficiale | https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij |
Descrizione | a tool to allow image files to be viewed on a google form response |
Dimensione del File | 5.58 KB |
Conteggio Installazioni | 446 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-04-28 |
Data di Pubblicazione | 2020-04-28 |
Valutazione | 4.00/5 Totale 3 Valutazioni |
Sviluppatore | alex |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Forms Image Viewer", "version": "1.0", "description": "a tool to allow image files to be viewed on a google form response", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "js": [ "content.js" ], "css": [ "printing.css" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html" } } |