0
我正在嘗試構建推送通知。
我試圖實現一個從web引用的隨機代碼。Chrome推送通知
的代碼去如下:
notification.html
<script>
function shows(){
var notify= webkitNotifications.createNotification('icon48.png','My notification',
'hi buddy');
notify.show();
}
if(webkitNotifications){
setInterval(function()
{
shows();
}, 1000);
}else{
chrome.tabs.create({url : "error.html"})
}
</script>
而且在error.htm
有在擴展的錯誤
在manifest.json的
{
"manifest_version": 2,
"name": "My Extension",
"version": "1",
"description" : "Display every 5 sec",
"icons" : {"48" :"icon48.png"},
"permissions" : ["tabs","notifications"],
"background": {"page": "notifications.html"}
}
的問題是擴展在鉻越來越加載,但它並沒有對代碼作出迴應。沒有顯示通知。 :(請幫助。
面臨同樣的問題。發生了什麼是我沒有得到任何形式的錯誤,但我沒有任何通知。我嘗試編輯和實施你的代碼.. –
@ChiragKamat 保存我建議作爲background.js的腳本並編輯你的manifest.json到 「background」:{ \t「scripts」:[「background。js「] } 這會在啓動插件時加載腳本 –
@ChiragKamat這是否解決了您的通知問題? –