Scratchpad to get Current Visible Tabs
If you use Panorama (aka, TabView) in Firefox (6 and up) and want to get a list of the currently visible tabs (i.e., the tabs in your currently-selected group), here’s the code to run in a Scratchpad (set to Environment:Browser*): let group = gBrowser.visibleTabs; // current group group.map(function (c) c.linkedBrowser.currentURI.spec).join(“\n”); Just select these two lines, [...]
