Random Filler
Simple tool that fills forms with random data or predefined edge cases.
Random Filler क्या है?
Random Filler Pawel Szczurko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple tool that fills forms with random data or predefined edge cases."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Random Filler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |