Random Filler
Simple tool that fills forms with random data or predefined edge cases.
Τι είναι το Random Filler;
Το Random Filler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Pawel Szczurko, και η κύρια λειτουργία του είναι "Simple tool that fills forms with random data or predefined edge cases.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Random Filler
Λήψη αρχείων επέκτασης Random Filler σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
There already exist tools that fill web forms, but this extension aims to aid developers in testing web forms by providing a simple yet useful apporach to filling out forms. Esentially there are two modes, completely random fill and realistic test cases. The completely random options fill forms with random characters (with a biased probability towards letters). On the other hand, a user has also the option to select one of the available test cases, or a mix among the test cases.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Random Filler |
ID | clofnhpoigphigpholmoimnmkojlpmjg |
Επίσημο URL | https://chromewebstore.google.com/detail/random-filler/clofnhpoigphigpholmoimnmkojlpmjg |
Περιγραφή | Simple tool that fills forms with random data or predefined edge cases. |
Μέγεθος Αρχείου | 50.67 KB |
Αριθμός Εγκαταστάσεων | 692 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2014-11-01 |
Ημερομηνία Δημοσίευσης | 2014-11-01 |
Αξιολόγηση | 3.50/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | Pawel Szczurko |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Random Filler", "version": "1.0", "options_page": "options.html", "description": "Simple tool that fills forms with random data or predefined edge cases.", "background": { "scripts": [ "back.js" ] }, "icons": { "512": "icons\/icon512.png", "256": "icons\/icon256.png", "128": "icons\/icon128.png", "64": "icons\/icon64.png", "48": "icons\/icon48.png", "32": "icons\/icon32.png", "24": "icons\/icon24.png", "16": "icons\/icon16.png" }, "browser_action": { "default_icon": { "19": "icons\/icon24.png" }, "default_title": "Random Filler" }, "permissions": [ "activeTab", "storage" ] } |