在Chrome扩展中使用NOTY JS通知库



我正在尝试在Chrome扩展程序中使用通知库Noty。

它说你可以通过以下方式安装:

<link href="lib/noty.css" rel="stylesheet">
<script src="lib/noty.js" type="text/javascript"></script>

我尝试将其添加到我的内容脚本中,.html但是,在.js页面中调用新通知失败。

{
"name": "--",
"version": "1.0",
"description": "--",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["-removed-"],
"js": ["popup.js"]           **where I am trying to fire off a notification**
}
],
"manifest_version": 2,
"browser_action": {
"default_popup": "popup.html"  **where I added the script and link**
},
"permissions": [
"storage",
"notifications"
]
}

我已经阅读了一些不同的线程,但不了解整个过程。这是完全不行的,还是相当合理的?我只需要能够在弹出窗口.js文件中调用通知。

由于您的问题不合适,因此我假设您在安装 Noty.js 时遇到困难来回答这个问题。因此,为此,您首先需要使用npm(npm install noty(或yarn或bower下载noty.js文件,然后您必须将.js和.css文件复制到目录中,然后您需要通过脚本和样式标签包含。之后,您将能够调用 Noty((; 如果我的答案不正确并且我弄错了,请清除我,并随时询问您是否有任何问题。

相关内容

  • 没有找到相关文章

最新更新