Consider the following command:
 
Thread[{{1, 2, 3, 4}, {1, 4, 9, 16}}] // ListPlot
Now I want to pass into ListPlot the following option:
 
PlotStyle -> Black
so that the points appear in black color. Obviously, one can simply do
 
    ListPlot[
     Thread[{{1, 2, 3, 4}, {1, 4, 9, 16}}]
     , PlotStyle -> Black]
But I would like to be able (if possible at all) to pass this black color additional option into ListPlot when I use the Postfix syntax.
Any idea about that?