I have a big project (whole country) and it contains smaller features (administrative units).
My project is in .shp.
How to export features' coordinates one by one or all at once as long as all features' coordinates are separate / distinctive by eye in order to copy-paste them separately?
I don't care how coordinates are formatted as long as I can easily copy-paste them without downloading some huge program in order to open exported file.
But if there's any change to control the output, my desired final format is this:
// point 1 point 2
[["lat"=>xx.xxxxx,"lng"=>yy.yyyyy],["lat"=>xx.xxxxx,"lng"=>yy.yyyyy],/*etc*/]
Otherwise I could just program a JS function that formats the coordinates to my desired format.
All these features are on same layer:

