在 Chrome 扩展中使用 .JS 文件作为参考库?

发布于 2024-12-08 15:22:04 字数 43 浏览 0 评论 0原文

我想将所有函数放在 js 文件中,并从扩展中的代码中引用它们,这可能吗?

I want to put all my functions in js file and refer to them from my code in the extension is that possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二手情话 2024-12-15 15:22:04

如果您想从 html 使用它:

<script type="text/javascript" src="path/my_functions.js"></script>

如果您想从内容脚本引用它们:

chrome.tabs.executeScript(null, {file: "path/my_functions.js"}, function(){
   oneOfMyFunctions();
});

如果您想从清单文件引用它们:

{
  "name": "My extension",
  ...
  "content_scripts": [
    {
      "matches": ["http://www.google.com/*"],
      "js": ["path/my_functions.js"]
    }
  ],
  ...
}

更多信息 可在此处获取

If you wana use it from a html:

<script type="text/javascript" src="path/my_functions.js"></script>

If you wanna refer to them from a content script:

chrome.tabs.executeScript(null, {file: "path/my_functions.js"}, function(){
   oneOfMyFunctions();
});

If you wanna refer to them from the manifest file:

{
  "name": "My extension",
  ...
  "content_scripts": [
    {
      "matches": ["http://www.google.com/*"],
      "js": ["path/my_functions.js"]
    }
  ],
  ...
}

More info available here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文