Autofill-chrome-extension
Autofill-chrome-extension copied to clipboard
How to Add New Fields
Hi
I am willing to customize this extension as per my need I am willing to achieve following task
- add new fields like Descriptions,Username etc to Auto Fill Box- How can I achieve same
- I am willing avoid use of RegX to find element, because I have element names,element ID, of all the web site which I am willing to auto fill
Your help is greatly appreciated
Thanks
Thank you for trying it.
This extension uses jQuery selectors to find element, not regular expression. But this uses regular expression for matching urls.
For example, Suppose there is a html including <input type="text" name="name" id="username" /> and you want to input your name into the username automatically, all you have to do is fill these fields like as follows:
URL: ".*" Query: "#username" Value: "shri80"
I Hope this helps you.