Skip to content
Snippets Groups Projects
check.js 224 B
Newer Older
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!");}
});