Skip to content

Instantly share code, notes, and snippets.

@cherenkov
Created June 11, 2009 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cherenkov/127941 to your computer and use it in GitHub Desktop.
Save cherenkov/127941 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name startupOpenPages
// @namespace http://d.hatena.ne.jp/Cherenkov/
// @include chrome://browser/content/browser.xul
// ==/UserScript==
(function(){
function open() {
gBrowser.addTab("http://tv.yahoo.co.jp/vhf/sizu/realtime.html");
gBrowser.addTab("http://www3.nict.go.jp/cgi-bin/JST.pl");
gBrowser.addTab("http://dictionary.goo.ne.jp/");
}
setTimeout(open,0);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment