Skip to content

Instantly share code, notes, and snippets.

@yoshimov
Created November 26, 2008 07:05
Show Gist options
  • Save yoshimov/29316 to your computer and use it in GitHub Desktop.
Save yoshimov/29316 to your computer and use it in GitHub Desktop.
Social Launcher could show the url list of same person's social sites.
CmdUtils.CreateCommand({
name: "social-launcher",
description: "Show the list of same person's social sites.",
icon: "http://yoshimov.com/favicon.ico",
homepage: "http://yoshimov.com/?page=Social+Launcher",
author: { name: "Yoshimov", email: "yoshimov@pobox.com"},
preview: "Show the list of same person's social sites.",
execute: function(){
var d = Application.activeWindow.activeTab.document;
var s = d.createElement('script');
s.type='text/javascript';
s.src='http://service.yoshimov.com/slauncher/slauncher.js';
d.body.appendChild(s);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment