Google Forms Auto Filler

Automatically fills google forms.

Google Forms Auto Fillerคืออะไร?

Google Forms Auto Filler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Murat Serhat Alperen และคุณลักษณะหลักของมันคือ "Automatically fills google forms."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Forms Auto Filler

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}