Skip to content

Instantly share code, notes, and snippets.

Created April 21, 2011 03:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/933685 to your computer and use it in GitHub Desktop.
Save anonymous/933685 to your computer and use it in GitHub Desktop.
Message Passing attempt
<script>
chrome.tabs.getSelected(null, function(tab) {
chrome.tabs.sendRequest(tab.id, {greeting: "hello"}, function(response) {
console.log(response.farewell);
});
});
</script>
chrome.extension.onRequest.addListener(
function(request, sender, sendResponse) {
console.log(sender.tab ?
"from a content script:" + sender.tab.url :
"from the extension");
if (request.greeting == "hello")
sendResponse({farewell: "goodbye"});
else
sendResponse({}); // snub them.
});
{
"name": "Test",
"version": "1.0",
"background": "background.html",
"permissions": [
"tabs", "http://*/*"
],
"content_scripts": [
{
"matches": ["http://*/*"],
"js": ["content_script.js"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment