Google Forms Image Viewer

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

Was ist Google Forms Image Viewer?

Google Forms Image Viewer ist eine Chrome-Erweiterung, die von alex entwickelt wurde, und ihr Hauptmerkmal ist "a tool to allow image files to be viewed on a google form response".

Erweiterungsscreenshots

screenshot

Google Forms Image Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Forms Image Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Google Forms Image Viewer Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
Offizielle URL https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij
Beschreibung a tool to allow image files to be viewed on a google form response
Dateigröße 5.58 KB
Installationsanzahl 446
Aktuelle Version 1.0
Letztes Update 2020-04-28
Veröffentlichungsdatum 2020-04-28
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler alex
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}