Autofill-chrome-extension icon indicating copy to clipboard operation
Autofill-chrome-extension copied to clipboard

How to Add New Fields

Open shri80 opened this issue 12 years ago • 1 comments

Hi

I am willing to customize this extension as per my need I am willing to achieve following task

  1. add new fields like Descriptions,Username etc to Auto Fill Box- How can I achieve same
  2. 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

shri80 avatar Dec 27 '13 09:12 shri80

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.

akkunchoi avatar Dec 27 '13 13:12 akkunchoi