I agree that this would be desirable - there's a ticket to have such
info accessible via the backstage:
http://trac.tiddlywiki.org/ticket/438
FWIW, a lot of this info is already being gathered, so one could create
a bookmarklet* from something like the following:
---------------
(function() {
var plugins = installedPlugins.map(function(itm) {
return [
itm.Name || "N/A",
itm.Version || "N/A",
itm.Author || "N/A"
].join("; ");
});
var info = version.title + " " + formatVersion() + "\n" +
plugins.join("\n") + "\n";
wikify(info, document.body);
})();
---------------
(for lack of a better idea, this just appends the plugin info to the
bottom of the page)
-- F.
* e.g. using one of these tools:
http://xdexavier.googlepages.com/sharebookmarklet.html
http://subsimple.com/bookmarklets/jsbuilder.htm
http://4umi.com/web/bookmarklet/edit.php