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
Eメール [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"
            ]
        }
    ]
}