Tag Archives: firefox

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 [...]

Ubiquity code for Jaiku search through Jaikungfu

For the Jaiku users who have installed Ubiquity from Mozilla Labs, here’s a user script that enables you to search Jaiku through Jaikungfu (please let me know if you have a suggestion for something shorter and easier to type!)

makeSearchCommand({
name: “jaikungfu”,
url: “http://jaiku.lemonad.org/search?q={QUERY}”,
icon: “http://jaiku.lemonad.org/favicon.ico”,
description: “Jaikungfu search Jaiku.”,
preview: [...]

Jaikungfu: A firefox extension for Jaiku

Some of the information herein has not been updated for a while. Go to Jaikungfu on Google Code for the latest version!
Greasemonkey scripts are great. However, for users and developers alike, they do pose one problem; that of managing updates and bug fixes. There’s no automatic infrastructure set up for it and users might [...]