Google Forms Image Viewer

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

Vad är Google Forms Image Viewer?

Google Forms Image Viewer är en Chrome-tillägg utvecklad av alex, och dess huvudfunktion är "a tool to allow image files to be viewed on a google form response".

Tilläggsskärmbilder

screenshot

Ladda ner Google Forms Image Viewer-förlängningens CRX-fil

Ladda ner Google Forms Image Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Google Forms Image Viewer Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
Officiell webbadress https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij
Beskrivning a tool to allow image files to be viewed on a google form response
Filstorlek 5.58 KB
Antal Installationer 446
Aktuell Version 1.0
Senast Uppdaterad 2020-04-28
Publiceringsdatum 2020-04-28
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare alex
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}