what is the purpose tabid in chrome extension? {chrome.tabs.sendMessage(integer tabId, any message, function responseCallback)}

StackOverflow https://stackoverflow.com/questions/21108563

Pregunta

chrome.tabs.sendMessage(integer tabId, any message, function responseCallback)

In this what is the purpose of tab id? Is that required when I port to Firefox?

¿Fue útil?

Solución

With chrome.tabs.sendMessage you can send some information to a content script. And with tabId you specifiy the tab you want so send the message to.

See http://developer.chrome.com/extensions/tabs.html#method-sendMessage for more info for chrome.

I don't know about Firefox though. Maybe this question helps: how to implement Chrome extension 's chrome.tabs.sendMessage API in Firefox addon

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top