Random item
Would it be possible to introduce a function that could show random library items to users? This could be useful for cleaning up and reviewing the library. It could produce reactions like "Wow I forgot about that article" or "that one is useless". Especially when the library grows.
You can run this in Tools → Developer → Run JavaScript to select a random item in the current view:
var iv = ZoteroPane.itemsView; await iv.selectItem(iv.getRow(Zotero.Utilities.rand(0, iv.rowCount - 1)).id)
Best
You can run Javascript by debug-bridge.