Google Forms Image Viewer

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

Τι είναι το Google Forms Image Viewer;

Το Google Forms Image Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alex, και η κύρια λειτουργία του είναι "a tool to allow image files to be viewed on a google form response".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Google Forms Image Viewer

Λήψη αρχείων επέκτασης Google Forms Image Viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Google Forms Image Viewer Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
Επίσημο URL https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij
Περιγραφή a tool to allow image files to be viewed on a google form response
Μέγεθος Αρχείου 5.58 KB
Αριθμός Εγκαταστάσεων 446
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-04-28
Ημερομηνία Δημοσίευσης 2020-04-28
Αξιολόγηση 4.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής alex
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}