summaryrefslogtreecommitdiff
path: root/chromium/viable.js
blob: c9576086572068dc65c08a8208829f26f22b86fb (plain)
1
2
3
4
5
6
7
8
9
/* See COPYING file for copyright, license and warranty details. */

function viable() {
	var doc;
	doc = (document.body === undefined)
	      ? window.content.document : document;
	return doc.getElementsByTagName("p").length;
}
if(viable()) chrome.extension.sendRequest({}, function(response) {});