Google Forms Autocomplete

Extension that enables the autocomplete system on Google Forms

什麼是Google Forms Autocomplete?

Google Forms Autocomplete是由Heitor Eleutério開發的Chrome擴展程式,該擴展的主要功能是“Extension that enables the autocomplete system on Google Forms”。

擴展截圖

screenshot
screenshot
screenshot

下載Google Forms Autocomplete擴展crx文件

下載Google Forms Autocomplete擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Optimize your forms and have a more productive work cycle with a fully customizable forms autocomplete.                    

擴展基本資訊

名稱 Google Forms Autocomplete Google Forms Autocomplete
ID depehdamecodbkkcofaplnnbcoagijdp
官方網址 https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp
簡介 Extension that enables the autocomplete system on Google Forms
檔案大小 36.46 KB
安裝次數 326
目前版本 1.0.0.0
更新時間 2023-04-02
上架時間 2023-04-02
評分 5.00/5 共 1 次評分
開發者 Heitor Eleutério
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Forms Autocomplete",
    "description": "Extension that enables the autocomplete system on Google Forms",
    "version": "1.0.0.0",
    "icons": {
        "16": "\/images\/google-forms-16.png",
        "48": "\/images\/google-forms-48.png",
        "128": "\/images\/google-forms-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/forms\/*"
            ],
            "js": [
                "\/src\/script.js"
            ],
            "css": [
                "\/src\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "resources": [
                "\/src\/classes.js"
            ]
        }
    ],
    "action": {
        "default_popup": "\/src\/page\/index.html",
        "default_title": "Google Forms Autocomplete",
        "default_icon": {
            "16": "\/images\/google-forms-16.png",
            "48": "\/images\/google-forms-48.png",
            "128": "\/images\/google-forms-128.png"
        }
    },
    "permissions": [
        "storage"
    ]
}