Google Forms Image Viewer

a tool to allow image files to be viewed on a google form response

Wat is Google Forms Image Viewer?

Google Forms Image Viewer is een Chrome-extensie ontwikkeld door alex, en de belangrijkste functie is "a tool to allow image files to be viewed on a google form response".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Google Forms Image Viewer

Download Google Forms Image Viewer-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

                        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.                    

Basisinformatie over de Extensie

Naam Google Forms Image Viewer Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
Officiële URL https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij
Beschrijving a tool to allow image files to be viewed on a google form response
Bestandsgrootte 5.58 KB
Aantal Installaties 446
Huidige Versie 1.0
Laatst Bijgewerkt 2020-04-28
Publicatiedatum 2020-04-28
Beoordeling 4.00/5 Totaal 3 Beoordelingen
Ontwikkelaar alex
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}