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

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

سؤال

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?

هل كانت مفيدة؟

المحلول

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

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top