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
官方URL 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"
    ]
}