12345678910111213 |
- //
- // copyleft 2013 jeff cliff
- //
- // This code is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or (at
- // your option) any later version.
- // See COPYING.GPL / https://www.gnu.org/licenses/
- //
- // prints and closes all tab URLs that are currently open in a firefox session
- // assumes you have MOZ REPL installed and working
- var l=window.length; for (i=0; i<l; i++) { repl.print(window.gURLBar.textValue) ; gBrowser.removeCurrentTab();}
|