Skip to content

Instantly share code, notes, and snippets.

View yonran's full-sized avatar

Yonathan Randolph yonran

View GitHub Profile
@yonran
yonran / content_script.js
Created April 21, 2011 18:06 — forked from anonymous/background.html
Message Passing attempt
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.
});