|
CmdUtils.makeSearchCommand({
|
|
name: "coinopspace-search",
|
|
synonyms: ["cosp"],
|
|
homepage: "http://www.coinopspace.com/profile/Brian",
|
|
author: { name: "Brian J. Hanifin", email: "[email protected]"},
|
|
url: "http://www.coinopspace.com/main/search/search?q={QUERY}",
|
|
icon: "http://www.coinopspace.com/favicon.ico",
|
|
description: "Searches CoinOpSpace.com: a Classic Arcade, Pinball and Console Collecting Gaming Community."
|
|
});
|
|
|
|
CmdUtils.makeSearchCommand({
|
|
name: "coinoporg-search",
|
|
homepage: "http://www.coinopspace.com/profile/Brian",
|
|
author: { name: "Brian J. Hanifin", email: "[email protected]"},
|
|
url: "http://coinop.org/Search.aspx?st={QUERY}",
|
|
icon: "http://coinop.org/favicon.ico",
|
|
description: "Searches Coinop.org: a comprehensive database of coin-operated arcade games."
|
|
});
|
|
|
|
CmdUtils.CreateCommand({
|
|
name: "greatgamedatabase-search",
|
|
synonyms: ["ggdb-search"],
|
|
url: "http://www.greatgamedatabase.com/GGDB/Search.asp",
|
|
icon: "http://www.greatgamedatabase.com/favicon.ico",
|
|
description: "Searches the Great Game Database.",
|
|
takes: {"search term": noun_arb_text},
|
|
execute: function(input){ var query = encodeURIComponent(input.text);
|
|
var postData = "s={QUERY}".replace(/%s|{QUERY}/g, query);
|
|
postData = postData.concat("&f=Coin-Op"); // <- Remark this out to remove the Coin-Op filter.
|
|
Utils.openUrlInBrowser("http://www.greatgamedatabase.com/GGDB/Search.asp", postData);}
|
|
});
|
|
|
|
CmdUtils.makeSearchCommand({
|
|
name: "ipdb-search",
|
|
synonyms: ["pinball-search"],
|
|
homepage: "http://www.coinopspace.com/profile/Brian",
|
|
author: { name: "Brian J. Hanifin", email: "[email protected]"},
|
|
url: "http://ipdb.org/search.pl?any={QUERY}&searchtype=quick",
|
|
icon: "http://ipdb.org/favicon.ico",
|
|
description: "Searches the Internet Pinball Database (ipdb.org)."
|
|
});
|
|
|
|
CmdUtils.CreateCommand({
|
|
name: "klov-search",
|
|
synonyms: ["arcade-search","videogame-search"],
|
|
homepage: "http://www.coinopspace.com/profile/Brian",
|
|
author: { name: "Brian J. Hanifin", email: "[email protected]"},
|
|
url: "http://klov.com/results.php",
|
|
icon: "http://klov.com/favicon.ico",
|
|
description: "Searches the Killer List of Video Games (klov.com).",
|
|
takes: {"search term": noun_arb_text},
|
|
execute: function(input){ var query = encodeURIComponent(input.text);
|
|
var postData = "q={QUERY}&boolean=AND".replace(/%s|{QUERY}/g, query);
|
|
Utils.openUrlInBrowser("http://klov.com/results.php", postData);}
|
|
}); |