Skip to content

Instantly share code, notes, and snippets.

@fundaman123
Created September 14, 2008 04:51
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 fundaman123/10707 to your computer and use it in GitHub Desktop.
Save fundaman123/10707 to your computer and use it in GitHub Desktop.
Ubiquity - Web Traffic Stats.
if (CmdUtils.parserVersion == 2) {
CmdUtils.CreateCommand({
names: ["traffic"],
icon: "http://siteanalytics.compete.com/favicon.ico",
author: {name: "Pratham Kumar", email: "pratham@pratham.name"},
description: "Get Compete traffic statistics.",
homepage: "http://pratham.name/",
arguments: [{role: 'object', nountype: noun_arb_text, label: 'example.com'}],
preview: function (html, q) {
var params = {};
html.innerHTML = 'Getting Compete traffic stats for <b>'+q.object.text+'</b>';
if (q.object.text == '')
return;
html.innerHTML = '<img style="width:490px;height:200px" src="http://grapher.compete.com/'+q.object.text+'_uv.png"><br>';
},
execute: function (args) {
var url = "http://siteanalytics.compete.com/"+args.object.text+"/?metric=uv";
Utils.openUrlInBrowser (url);
}
});
} else {
CmdUtils.CreateCommand({
name: "traffic",
icon: "http://siteanalytics.compete.com/favicon.ico",
author: {name: "Pratham Kumar", email: "pratham@pratham.name"},
description: "Get Compete traffic statistics.",
homepage: "http://pratham.name/",
takes: {"example.com": noun_arb_text},
preview: function (html, q) {
var params = {};
html.innerHTML = '<img style="width:490px;height:200px" src="http://grapher.compete.com/'+q.text+'_uv.png"><br>';
},
execute: function (q) {
var url = "http://siteanalytics.compete.com/"+q.text+"/?metric=uv";
Utils.openUrlInBrowser (url);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment