Google Forms Image Viewer
a tool to allow image files to be viewed on a google form response
O que é Google Forms Image Viewer?
Google Forms Image Viewer é uma extensão do Chrome desenvolvida por alex, e sua principal característica é "a tool to allow image files to be viewed on a google form response".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Forms Image Viewer
Baixe arquivos de extensão Google Forms Image Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Google Forms Image Viewer |
ID | hfmflfabnobgcjjbfddlackbpjmnpgij |
URL Oficial | https://chromewebstore.google.com/detail/google-forms-image-viewer/hfmflfabnobgcjjbfddlackbpjmnpgij |
Descrição | a tool to allow image files to be viewed on a google form response |
Tamanho do Arquivo | 5.58 KB |
Contagem de Instalações | 446 |
Versão Atual | 1.0 |
Última Atualização | 2020-04-28 |
Data de Publicação | 2020-04-28 |
Classificação | 4.00/5 Total de 3 Avaliações |
Desenvolvedor | alex |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |