开发者

How to add automatic click feature in chrome extension?

开发者 https://www.devze.com 2023-01-13 18:44 出处:网络
I am creating a chrome extension, and need to click on the first link automa开发者_如何学Ctically for some time.

I am creating a chrome extension, and need to click on the first link automa开发者_如何学Ctically for some time. Is it possible to add automatic click feature in chrome extension??


If you don't care about mouse coordinates, you can use this:

var trigger = document.createEvent("Event");
trigger.initEvent("click", true, true);
element.dispatchEvent(trigger);

"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:

var x = 0,
    y = 0;

var trigger = document.createEvent("MouseEvent");
trigger.initMouseEvent("click", true, true, null, 0, x, y, x, y, false, false, false, false, 0, null);
element.dispatchEvent(trigger);

Change x and y to what you want ...or just use jQuery, like npdoty said.


jQuery has a nice trigger function for just such a situation (jQuery docs), even a shortened form just for the click event, and that pairs nicely with the :first pseudo-selector.

$('a:first').click();

You can probably do this in pure JavaScript as well, using some combination of element.click() or dispatching events.

0

精彩评论

暂无评论...
验证码 换一张
取 消