Form Templates

Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).

Τι είναι το Form Templates;

Το Form Templates είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον McSodbrenner, και η κύρια λειτουργία του είναι "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Form Templates

Λήψη αρχείων επέκτασης Form Templates σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        You have to test a big form and have to fill the complete form again and again? Then this extension is for you. 

It helps you to generate dummy data and to fill the complete form with just one keyboard shortcut. And you are able to create templates if you want to fill in the same data again and again with some dummy data.

Very useful if you have a catch all email address: Use the placeholder # to generate a counting number each page reload. For example in test#@yourdomain.com.

Take a look at the screenshots on how to use it.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
Επίσημο URL https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
Περιγραφή Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Μέγεθος Αρχείου 51.8 KB
Αριθμός Εγκαταστάσεων 223
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2018-03-31
Ημερομηνία Δημοσίευσης 2018-03-31
Αξιολόγηση 3.48/5 Συνολικά 27 Αξιολογήσεις
Προγραμματιστής McSodbrenner
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Form Templates",
    "version": "1.0",
    "description": "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_popup": "popup.htm"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery.devform.js",
                "jquery.hotkeys.js",
                "jquery.dummy.js",
                "init.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}