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".
Снимки экрана расширения
Скачать файл 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 |
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" } } |