* Upon installing the plugin, I tried to "hide read" thinking it would hide the posts that I had already viewed, but they were not hidden. It should be possible to hide these with a css selector.
* After installing and clicking a post to read it, then clicking hide read, this post was not hidden (must not be considered read, again, css selector)
Finally I have a feature request: I would like a "mark read" link to appear next to each link, so that I can mark an individual link read without reading it.
Great idea and I hope that my feedback can help you to improve the app.
It could be possible to mark individual items read, but hiding the ones you actually clicked on (without marking them read) is unfortunately impossible: As pointed out somewhere else in the comments, with javascript you can't read the "visited" selector, and with only css I could perhaps hide just the visited link, but not the encasing and trailing TR.
I figured out another way you can hide links as they are clicked.
With jQuery override the .click() event of every link on the page. Then, when the link is clicked get the URL of the link from the event parameter that is passed to .click(). From that information, you can construct a CSS selector like this one (with jQuery)
Which can then be used to hide the clicked link. The problem now is one of persisting the data between sessions. Your options are localStorage, remote storage, and my suggestion: sqlite in webkit a'la: http://stackoverflow.com/questions/6200976/sqlite-in-chrome
After you have saved the "read" urls in SQLite, you should be able to hide the surrounding data as well in the other <tr> tag by traversing the DOM with jquery.
I really would love if you did this. Please consider giving it a try.
* Upon installing the plugin, I tried to "hide read" thinking it would hide the posts that I had already viewed, but they were not hidden. It should be possible to hide these with a css selector.
* After installing and clicking a post to read it, then clicking hide read, this post was not hidden (must not be considered read, again, css selector)
Finally I have a feature request: I would like a "mark read" link to appear next to each link, so that I can mark an individual link read without reading it.
Great idea and I hope that my feedback can help you to improve the app.
Thanks.