Form Inspector

Inspect, modify, and test live forms with ease

Was ist Form Inspector?

Form Inspector ist eine Chrome-Erweiterung, die von Kinman Covey entwickelt wurde, und ihr Hauptmerkmal ist "Inspect, modify, and test live forms with ease".

Erweiterungsscreenshots

screenshot

Form Inspector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Form Inspector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Form Inspector Form Inspector
ID ngbpjbijlmghjooeejfjfmgjfmlkfpbg
Offizielle URL https://chromewebstore.google.com/detail/form-inspector/ngbpjbijlmghjooeejfjfmgjfmlkfpbg
Beschreibung Inspect, modify, and test live forms with ease
Dateigröße 14.67 KB
Installationsanzahl 419
Aktuelle Version 1.1
Letztes Update 2018-04-24
Veröffentlichungsdatum 2018-04-23
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Kinman Covey
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kin5/form-inspector
Unterstützte Sprachen 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"
            ]
        }
    ]
}