WebExtensions History Browser 
Simple browser extension that helps you browse history like a boss.
Firefox's default history sidebar is limited and the history browsing popup would benefit from some more features. It doesn't let you filter easily by date range as of September 2017. Other extensions that can do it aren't compatible with Firefox 57+ anymore, only work in firefox and/or aren't open source. This extension tries to solve all of this
Preview
Key features
- Search through all history
- Search in date column
- Sort columns
- Resize columns
- Reorder columns
TODO
- Add a datetime picker range to filter by dates (library already installed)
- Add a setting for the date format for
Last visit timecolumn (See #3) - Convert icon to svg (it's already a vector based icon in
resources) - Improve title search by using
browser.historyquery - Have webpack watch for
manifest.jsonand use the webpack-webext-plugin to simplify the workflow. - Test on other browsers such as Google Chrome and Microsoft Edge
- Export table data
- Allow resizing columns, maybe use something like jeffreydwalter/ColReorderWithResize (see it in action) (See #7)
- Release on the firefox addons page (See #2)
- Load all libraries from webpack with
requireinstead of html tags - Format
Last visit timecolumn - Display history in a table
- Sort history by date
- Display number of visits per page
- Add page title search
- Create a logo
- Install bootstrap-daterangepicker
- Setup datatables for minimal out of the box filtering and column sorting
- Add some dark style using bootswatch's slate bootstrap theme
- Create a basic table layout
How to build it
npm install
npm run buildThe WebExtension in the addon folder should now work.
Live-development
Run webpack in watch mode.
npm run watchRelease
This will need some improvements, but here are personal notes I took:
npm i
npm version patch
# todo: update addon/manifest.json automatically based on package.json, for now, update the file manually
npm run build
npm run lint
git push --tags
cd addon
zip -r webextensions-history-browser.zip ./*Visit https://addons.mozilla.org/en-US/developers/addon/webextensions-history-browser/versions/submit/
Contributions and Feature Requests
Sure can do! PRs are welcome

