Newer
Older
Craig Earley
committed
chrome.tabs.query({'active': true, 'lastFocusedWindow': true}, function (tabs) {
var url = tabs[0].url;
if (url == "https://www.google.com/"){
document.writeln("Google!");
}
else {document.writeln("not google!");}
});