当我完成我的chrome扩展时,我发现它是一个错误:
Uncaught TypeError: Cannot call method 'create' of undefined chrome-extension://dpfgkakomehcgdcnigflmkcfngeaamlc/js/background.js:46
Run Code Online (Sandbox Code Playgroud)
injectScript startLiveReload init
我用它就是这个
mainfest.json"background":{"scripts":["js/background.js"]}
和background.js一样
var readMenuItemId = chrome.contextMenus.create({
"title" : "????",
"type" : "normal",
contexts : [ "selection" ],
documentUrlPatterns: ["http://*/*", "https://*/*"],
"onclick" : genericOnClick
});
Run Code Online (Sandbox Code Playgroud)
我不知道哪里出错了