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是由alex开发的Chrome扩展程序,该扩展的主要功能是“a tool to allow image files to be viewed on a google form response”。
扩展截图
下载Google Forms Image Viewer扩展crx文件
下载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" } } |