Release simple scripting to add tabs to the UI

I see a bunch of suggestions for things that could be added to the left/right UI panels. If we had a simple scripting language for adding new tabs to these panels I bet the community would build a lot of these requests which would save a ton of dev time on Frontier's end. Could easily just be XML with command line options.
 
<widget>
<panel>left</panel>
<layout>
<hdiv>
<vdiv>Mp3 Player</vdiv>
<vdiv><button exec="%appdata%\mp3player.exe --play $('#tracklist').selected">Play</button>
</hdiv>
<hdiv>
<div id="tracklist"><external exec="%appdata%\mp3player.exe --list_as_ul" /></div>
</hdiv>
</layout>
</widget>
 
Back
Top Bottom