我正在尝试在 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"
]
}
我已经阅读了一些不同的线程并且不了解整个过程。这是一个完全的禁忌,还是相当合理的做法?我只需要能够在 popup.js 文件中调用通知。