I would love to have the settings saved by slicer presented in a popup.
In S3D you have all settings at the start of the gcode file.
Have options in the Octoprint plugin to select the settings you like to see.
In Cura you have settings in the bottom of the file.
Don't know if other slicers has the same
For an experienced programmer it should certainly be no problem to build such a parser.
But such a plugin can easily become a life task.
Finally, then every - albeit small - change in the data format of the slicers must be updated in the plugin to work proberly ...
I dunno. If one takes a simple approach it might be do-able. In the case of Cura, it just drops at the end of the file what is a big JSON object which is then chopped up to control the line length. It's well-marked with a comment so it would be easy to find and grab.
It might be simple enough to then just have this text available for a hover-over popup to display what it found.
Rather than reading all the files, only reading the selected file would again simplify matters. A single line (or FontAwesome icon) added to the State side panel widget would be the point to query. Hover over this and a popup box would display what was found.
Personally, I'd rather have an ugly report than to wonder which slicing decisions I made for this file.
That said, I actually have written a Go language CLI which will report some Cura-specific information which was important to me at the time. In theory, one could compile it for the Raspbian operating system, place the executable into the ~/scripts folder, call it from Python using a simply plugin approach.