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

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

Pergunta

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?

Foi útil?

Solução

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 em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top