Form Inspector

Inspect, modify, and test live forms with ease

ما هو Form Inspector؟

Form Inspector هو إضافة Chrome تم تطويرها بواسطة Kinman Covey، والميزة الرئيسية لها هي "Inspect, modify, and test live forms with ease".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Form Inspector

قم بتنزيل ملفات الامتداد Form Inspector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Easily inspect, debug, and test live forms on any website.

Form inspector allows you to:

+ Modify input values (including hidden inputs)
+ Submit forms straight from the extension
+ A testing mode that automatically fills in form inputs when opening the extension
+ Custom default test values for quick testing
+ Honeypot avoidance

Test mode makes it easier than ever to perform test submissions on forms.

1. Provide default input values in the Test mode options
2. Activate Test mode by clicking the checkbox
3. Open the extension on any page to autofill forms with your default values
4. Click submit. No more repetitive typing!                    

معلومات أساسية عن التمديد

الاسم Form Inspector Form Inspector
ID ngbpjbijlmghjooeejfjfmgjfmlkfpbg
عنوان URL الرسمي https://chromewebstore.google.com/detail/form-inspector/ngbpjbijlmghjooeejfjfmgjfmlkfpbg
الوصف Inspect, modify, and test live forms with ease
حجم الملف 14.67 KB
عدد التثبيتات 419
النسخة الحالية 1.1
آخر تحديث 2018-04-24
تاريخ النشر 2018-04-23
تقييم 5.00/5 مجموع تقييمات 1
المطور Kinman Covey
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/kin5/form-inspector
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form Inspector",
    "version": "1.1",
    "description": "Inspect, modify, and test live forms with ease",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}