Tag Archives: plugins

Ubiquity search for Bloggy.se

For people who have installed Ubiquity from Mozilla Labs, here’s a user script that enables you to quickly search for words in Bloggy:
makeSearchCommand({
name: “Bloggy”,
url: “http://bloggy.se/search/{QUERY}”,
icon: “http://bloggy.se/favicon.ico”,
description: “Searches Bloggy for…”,
preview: function(pblock, directObject) {
var searchTerm = directObject.text;
var pTemplate = [...]

Search words in Wordnik from Ubiquity

For people who have installed Ubiquity from Mozilla Labs, here’s a user script that enables you to quickly search for words in Wordnik:
makeSearchCommand({
name: “Wordnik”,
url: “http://wordnik.com/{QUERY}”,
icon: “http://wordnik.com/media/img/wordnik.ico”,
description: “Searches Wordnik for your words.”,
preview: function(pblock, directObject) {
var searchTerm = directObject.text;
var [...]