chrome.tabs.create is giving an error - “Uncaught TypeError: Cannot call method 'create' of undefined”

回眸只為那壹抹淺笑 提交于 2019-12-07 04:23:20

问题


My manifest.json contains

"content_scripts": [
  {
  "matches": ["http://www.facebook.com/*","https://www.facebook.com/*"],
   "js": ["js/jquery-1.7.2.min.js", "js/jquery.livequery.min.js", "js/script.js"]
  }
]

and the contents of script.js are

$("#FB_HiddenContainer").livequery(function(){
   chrome.tabs.create({"url":"http://www.google.com"});
});

When i open facebook, console reports an error

Uncaught TypeError: Cannot call method 'create' of undefined

at

chrome-extension://whateveristhisweirdcode/js/script.js:2

How can i make it open a new tab??


回答1:


Content scripts can't access most extension APIs; only those listed in the content scripts doc will work. Instead, use window.open("http://www.google.com") (yes, this does create a new tab in Chrome; no, there aren't any user settings in Chrome that would change that). If you need more access to the extension APIs, you can use message passing to make your event page do things on behalf of the content script.



来源:https://stackoverflow.com/questions/10667178/chrome-tabs-create-is-giving-an-error-uncaught-typeerror-cannot-call-method

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!