Loop autofill

178 views
Skip to first unread message

Useless paraexo

unread,
Mar 4, 2022, 11:12:19 AM3/4/22
to chrome-...@googlegroups.com
can I add a rule that makes autofill extension re-autofills the input field
Message has been deleted

Use paraexo

unread,
Mar 4, 2022, 11:16:36 AM3/4/22
to Autofill Extension
a loop that re-autofills the input field every 1 second

Use paraexo

unread,
Mar 5, 2022, 5:47:58 PM3/5/22
to Autofill Extension
there is a rule for delay, but I didn't find any rule for loop, can you help me please?

Vicky Lahkar

unread,
Mar 6, 2022, 12:19:48 AM3/6/22
to Autofill Extension
You will need Javascript for looping. Better ask at Stackoverflow. They helped me to solve a javascript query related to Autofill which has gone unanswered here.
Message has been deleted

Use paraexo

unread,
Mar 6, 2022, 7:08:33 AM3/6/22
to Autofill Extension
I know how to to do it with javascript but how to apply it as a rule for the extension?

Use paraexo

unread,
Mar 7, 2022, 6:29:17 PM3/7/22
to Autofill Extension
I found the solution!!!!

Type = JavaScript
Value =
var time = 1;

var interval = setInterval(function() {
   if (time <= 3) {
Autofill('c1');
   }
   else {
      clearInterval(interval);
   }
}, 500);

this rule will loop value in column 1 every 500 milliseconds 

download (19).png
Reply all
Reply to author
Forward
0 new messages