Fill-it
Fill HTML form with fake values.
Fill-it क्या है?
Fill-it Florian Knibbe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fill HTML form with fake values."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fill-it एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Fill-it is totally open source : https://github.com/FlorianKnibbe/fill-it Fill-it is Google Chrome extension design to fill HTML form with fake values in order to saving time when it comes to fill forms. You can customize and add filter/target pattern and generated values pattern in parameters. **WARNING** Please note that **default parameters are for French users** but you can customize all of them as you want/need. * Target fields on : label, placeholder, name and type * Auto fill respect attributs : min, max, minlength, maxlength and pattern ## COMMANDS ## CTRL + DBLCLICK => Auto fill one field or click on one field then... CTRL + SHIFT + A => Auto fill all fields in page CTRL + SHIFT + F => Auto fill form (restricted area) in page
एक्सटेंशन की मूल जानकारी
नाम | Fill-it |
ID | fdkaefddgpceppjokdiffahhjgcaflke |
आधिकारिक URL | https://chromewebstore.google.com/detail/fill-it/fdkaefddgpceppjokdiffahhjgcaflke |
विवरण | Fill HTML form with fake values. |
फ़ाइल का आकार | 70.64 KB |
स्थापना संख्या | 281 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2018-09-30 |
प्रकाशन तिथि | 2018-09-30 |
डेवलपर | Florian Knibbe |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/FlorianKnibbe/fill-it |
सहायता पृष्ठ URL | https://github.com/FlorianKnibbe/fill-it |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fill-it", "version": "1.0.2", "short_name": "Fillit", "description": "Fill HTML form with fake values.", "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "img\/icon16.png", "24": "img\/icon24.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "default_title": "Open source Form Filler by Florian Knibbe", "default_popup": "popup.html" }, "icons": { "16": "img\/icon16.png", "24": "img\/icon24.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "assets\/jquery.js", "assets\/randexp.js", "domManipulator.js" ] } ], "manifest_version": 2 } |