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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}