-
-
Save rrichards/212615 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (CmdUtils.parserVersion == 2) { | |
CmdUtils.CreateCommand({ | |
names: ["traffic"], | |
icon: "http://siteanalytics.compete.com/favicon.ico", | |
author: {name: "Pratham Kumar", email: "[email protected]"}, | |
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: "[email protected]"}, | |
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