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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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