我正在编写一个将按钮注入 youtube 页面的 chrome 扩展程序。该按钮在我的内容脚本中创建并注入到页面中。我的问题是我不知道如何在内容脚本或后台脚本中为其构建点击功能。
我的内容脚本(注入的按钮):
$("watch7-user-header").innerHTML+=
'<div id="trans">
<iframe name="iframe"></iframe>
<span class="buttonGroup">
<button id="download">
<span class="buttonContent1">'+x+'</span>
</button>
<button id="menu" class=" yt-uix-button yt-uix-button-default" onclick="";return false;"> //this is the dropdown menu
<span class="buttonContent1">
</span>
<ul id="stylelist" class="yt-uix-button-menu hid">'+o+S+"</ul>
</button>
</span>
</div>"
我如何在后台脚本中调用点击事件?