Google Forms Image Viewer

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

What is Google Forms Image Viewer?

Google Forms Image Viewer is a Chrome extension developed by alex, and its main feature is "a tool to allow image files to be viewed on a google form response".

Extension Screenshots

screenshot

Download Google Forms Image Viewer Extension CRX File

Download Google Forms Image Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Forms Image Viewer Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
Official URL https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij
Description a tool to allow image files to be viewed on a google form response
File Size 5.58 KB
Installation Count 446
Current Version 1.0
Last Updated 2020-04-28
Publish Date 2020-04-28
Rating 4.00/5 Total 3 Ratings
Developer alex
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}