I am creating a chrome extension, and need to click on the first link automatically for some time.
Is it possible to add automatic click feature in chrome extension??
I am creating a chrome extension, and need to click on the first link
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you don’t care about mouse coordinates, you can use this:
“element” should be the DOM node you want to trigger the click on. If you want to also specify a particular X/Y coordinate, you could use this:
Change
xandyto what you want …or just use jQuery, like npdoty said.