You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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