tabs-moz-repl.js 242 B

1234
  1. // prints and closes all tab URLs that are currently open in a firefox session
  2. // assumes you have MOZ REPL installed and working
  3. var l=window.length; for (i=0; i<l; i++) { repl.print(window.gURLBar.textValue) ; gBrowser.removeCurrentTab();}