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”。

擴展截圖

screenshot

下載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 Google Forms Image Viewer
ID hfmflfabnobgcjjbfddlackbpjmnpgij
官方網址 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"
    }
}