如何在用户脚本中集成第三方 JavaScript 库
对于我正在编写的这个用户脚本,我需要使用具有 3 个 JavaScript 文件的第三方 JavaScript 库。由于 @require 在 Chrome 上不起作用,如何将多个外部 JavaScript 库添加到用户脚本中?在选择一种之前我会考虑所有的可能性。
我知道你可以使用 这个 方法添加 jQuery。我个人就用过这个。是否也可以使用此解决方法添加其他库?
For this userscript I'm writing, I need to use a third-party JavaScript library which has 3 JavaScript files. Since @require doesn't work on Chrome, how can I add multiple external JavaScript libraries to a userscript? I'm considering all the possibilities before choosing one.
I know you can add jQuery using this method. I have personally used that. Is it possible to add other libraries using this work-around as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试在用户脚本中添加以下函数,
由于文件是异步加载的,并且不能保证文件加载的顺序,因此
对于多个外部文件,请在 chined 函数中调用此函数,例如
根据需要链接多个外部文件,加载文件的顺序将被正确保留。希望这有帮助,一切顺利
Try adding following function in your userscript,
As the files are loaded asynchronously, and order of the loading of files is not guaranteed, than
for multiple external files, call this function in a chined function e.g.
Chain as many exeternal files as you need, the order of loading files will be properly preserved. Hope this helps, all best