Google Forms Image Viewer

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

Qu'est-ce que Google Forms Image Viewer ?

Google Forms Image Viewer est une extension Chrome développée par alex, et sa fonction principale est "a tool to allow image files to be viewed on a google form response".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Forms Image Viewer

Téléchargez les fichiers d'extension Google Forms Image Viewer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Google Forms Image Viewer Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
URL Officiel 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
Taille du Fichier 5.58 KB
Nombre d'Installations 446
Version Actuelle 1.0
Dernière Mise à Jour 2020-04-28
Date de Publication 2020-04-28
Évaluation 4.00/5 Total 3 Évaluations
Développeur alex
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}