Google Forms Auto Filler

Automatically fills google forms.

什么是Google Forms Auto Filler?

Google Forms Auto Filler是由Murat Serhat Alperen开发的Chrome扩展程序,该扩展的主要功能是“Automatically fills google forms.”。

扩展截图

screenshot

下载Google Forms Auto Filler扩展crx文件

下载Google Forms Auto Filler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This add-on enters text into input fields of Google Forms by predefined values automatically. For example if you set Name as John, each input fields of Google Forms whose title is Name gets John value when the page is loaded.

IMPORTANT Note: Because of the Google Forms bot filling blocking, you must click and press space for each form field. (Thus Google will think you have filled out)

You can report bugs or make feature requests on
https://github.com/muratalperen/GoogleFormsAutoFiller                    

扩展基本信息

名称 Google Forms Auto Filler Google Forms Auto Filler
ID jdjlkmjjmpdbmejkicfjokkgifdkpjek
官方URL https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek
简介 Automatically fills google forms.
文件大小 124 KB
安装次数 10,000
当前版本 0.2.3
更新时间 2022-03-15
上架时间 2021-01-28
评分 3.27/5 共11次评分
开发者 Murat Serhat Alperen
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/muratalperen/GoogleFormsAutoFiller
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Forms Auto Filler",
    "version": "0.2.3",
    "description": "Automatically fills google forms.",
    "homepage_url": "https:\/\/github.com\/muratalperen\/GoogleFormsAutoFiller",
    "browser_specific_settings": {
        "gecko": {
            "id": "googleFormsAutoFiller@muratalperen"
        }
    },
    "icons": {
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/icon-32.png",
        "default_title": "Google Forms Auto Filler",
        "default_popup": "fillMenu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/docs.google.com\/forms\/*"
            ],
            "js": [
                "GoogleForm.js"
            ]
        }
    ]
}