我想将此特定脚本注入网站的HTML中。我正在编写chrome扩展,我只是不知道如何将此脚本转换为javascript或者将其注入然后执行它。最后,我只想在加载完所有内容后执行此脚本,包括我的其他扩展脚本。 ``
<script async defer src="https://apis.google.com/js/api.js"
onload="this.onload=function(){};handleClientLoad()"
onreadystatechange="if (this.readyState === 'complete') this.onload()">
</script>
``