如何创建一个扩展,该扩展将按下“创建新项目”按钮,并在加载页面后执行警报(“我们到这里”); 谁知道?
这是页面https://github.com/ 有一个按钮“开始一个项目”
我可以按它,但是不能发出alert()
这是代码
jQuery(document).ready(function($) {
alert('hello');
var button = $(".btn.shelf-cta.ml-3");
setTimeout(function(){
console.log('here we are');
alert('hello world');
},3000);
console.log('button.html() = ', button.html());
// button.click();
button.get(0).click();
console.log('here we goa1');
});