Is chrome.extension.onRequest deprecated?

后端 未结 1 572
误落风尘
误落风尘 2020-12-06 13:49

I\'m building a chrome extension and attempting to attach an event listener to this, but I\'m not seeing anything in the console of the background page.

chro         


        
相关标签:
1条回答
  • 2020-12-06 14:22

    Yes, Request was deprecated in favor of 'Message'. So instead of onRequest you should use onMessage, and sendMessage as a replacement for sendRequest.

    0 讨论(0)
提交回复
热议问题