Google Forms Image Viewer

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

Co to jest Google Forms Image Viewer?

Google Forms Image Viewer to rozszerzenie Chrome opracowane przez alex, a jego główną funkcją jest „a tool to allow image files to be viewed on a google form response”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Forms Image Viewer

Pobierz pliki rozszerzeń Google Forms Image Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Forms Image Viewer Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
Oficjalny URL https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij
Opis a tool to allow image files to be viewed on a google form response
Rozmiar pliku 5.58 KB
Liczba instalacji 446
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-04-28
Data Publikacji 2020-04-28
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper alex
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}