在 Chrome 扩展内容脚本中包含 Javascript 文件
我正在编写一个 Chrome 扩展程序,并且想要编写一个 JS 文件,该文件提供了另一个文件中不存在的几个预期功能,然后加载另一个文件。当传递当前模块的局部变量和全局变量时,我追求类似于 Perl 中的 require
、C 中的 #include
或 Python 中的 execfile
的行为,就像引用的文件直接插入到当前脚本中一样。
我可以找到的大多数现有解决方案都涉及将这些“包含”嵌入脚本标签内,但我不确定这是否适用(如果适用,请解释我的扩展程序在当前页面中注入所有这些脚本标签的确切位置)。
Update0
请注意,我正在编写内容脚本。至少在“用户”方面,我不提供原始的 HTML 文档。
I'm writing a Chrome extension, and want to write one JS file, that provides several expected functions that aren't present in another, then load that other file. I'm after behavior similar to require
in Perl, #include
in C, or execfile
in Python when passing the current modules locals and globals, as though the referenced file was inserted directly into the current script.
Most existing solutions I can find out there refer to embeddeding these "includes" inside script tags, but I'm not sure this applies (and if it does, an explanation of where exactly my extension is injecting all these script tags in the current page).
Update0
Note that I'm writing a content script. At least on the "user" side, I don't provide the original HTML document.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最好的解决方案是特定于 Chrome 的。 javascript 文件按照在扩展程序的
manifest.json< 中加载的顺序列出/code>
,以下是相关字段的摘录:
javascript 文件按照给定的顺序有效连接,然后执行。
Well the best solution was Chrome-specific. The javascript files are listed in the order they are loaded in the extension's
manifest.json
, here's an extract of the relevant field:The javascript files are effectively concatenated in the order given and then executed.
我们在我们的组织中使用它来做到这一点。似乎工作得很好。
We use this at our organization to do this. Seems to work well enough.
你尝试过吗:
或者(我不确定是哪一个......但我记得其中一个有效)
Did you try :
or (I'm not sure which... but I recall one of them working)