2

私は新しいクロム通知を使用しようとしていますが、基本的なものを機能させようとするだけでは何も気になりませんが、取得し続けます

キャッチされていない TypeError: 未定義のメソッド 'create' を呼び出せません

マニフェストだと思いますが、何が間違っているのかわかりません。誰かアイデアがありますか?

前もって感謝します

Javascript

var id= 0;

var opt={
type:"basic",
title:"Hello",
message:"world",
iconUrl:"Google.png"
}


function creationCallback(id) {
console.log("Succesfully created " + id + " notification");
}


function createnot()
{

chrome.notifications.create(id, opt, creationCallback);
id++;
}

マニフェスト

{
    "name": "Notification API Sample",
    "description": "Tests the notification API",
    "manifest_version" : 2,
    "version" : "0.1",

    "permissions" : [
    "notifications"
    ]
}

HTML

<html>
<head>
 <script type="text/javascript" src="note.js"></script>
 <link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
 <input type="button" value="meh" onclick="createnot()"/>
 <footer>
 </footer>
</body>
</html>
4

1 に答える 1