Recenze doplňku webextensions History Browser
webextensions History Browser od gableroux
5 recenzí
- Hodnocení: 4 z 5od uživatele thanbo, před 3 lety
- Hodnocení: 4 z 5od uživatele Uživatel Firefoxu - 12760379, před 6 letyFirst impression is good. I miss the favicons of the pages for better overview.
- Hodnocení: 4 z 5od uživatele rovyko, před 6 lety
- Hodnocení: 4 z 5od uživatele Uživatel Firefoxu - 12663304, před 7 letyIt's usable and gives good overview of history. You should work on the presentation though. The addon uses U.S. date format, please honor the locale. When some very long string without whitespace turns up, the table cell grows respectively, while also shrinking other columns to a tiny size. Please make sure that the table doesn't grow outside the screen and that minimum column size is guaranteed.
Odpověď vývojáře
zveřejněno před 6 letyI just released 1.0.2 which fixes the date format to use ISO 8601 instead which is built to sort lexicographically.
Concerning the table issue, I tried my best to get the css working for the size, but I'm not sure what would be the best fix for this.
Contributions are welcome if someone would try to fix this:
https://github.com/GabLeRoux/webextensions-history-browser - Hodnocení: 4 z 5od uživatele Uživatel Firefoxu - 13938307, před 7 letyNeat and useful, a huge improvement over the default history panel! Just a few features I think would make this a 5 star addon:
1. Show chronology of individual visits. E.g. If I've seen a particular video two days ago, but also today, there should be an option to see both on the history list.
2. Infinite scroll, or at least show more than 100 items per page.
3. Option to show a sidebar instead of a new tab.Odpověď vývojáře
zveřejněno před 6 lety1. Show chronology of individual visits.
I wish I could do this. The api only provides "HistoryItem"s:
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/history/HistoryItem
I'm not sure it's possible to have this information from the extension api, but I will investigate this a little more as there seem to be "VisitItem" which may be related:
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/history/VisitItem
2. Infinite scroll, or at least show more than 100 items per page.
Good idea. I'm using DataTables and they implemented this a while ago according to this post:
https://datatables.net/blog/2011-06-11
I will try to add an options page so we can tweak this a little more.
3. Option to show a sidebar instead of a new tab.
I suppose this can be done by following this:
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/user_interface/Sidebars
But I'm not sure how it could fit into a sidebar tho
--
Thanks for your suggestions and glad to see it helped. btw, sorry for the 1 year later reply. Looks like I didn't have any notification from Firefox. I just came here to release a new version to fix the date time column fomat ;)