Why is chrome.browserAction.onClicked undefined?

前端 未结 6 1158
情书的邮戳
情书的邮戳 2020-12-02 18:38

I\'m writing a Chrome extension that will redirect me to a URL when clicking on the browser action icon.

I\'m trying to use:

chrome.browserAction.onC         


        
6条回答
  •  萌比男神i
    2020-12-02 18:56

    Make sure we don't have jquery.js before background.js in the scripts array of background in manifest.json.

    "background": {
        "scripts": ["background.js","jquery.js"]
    }
    

提交回复
热议问题