The supported web browsers.
Returns an array of installed web browsers.
Reads all the history for the selected web browser.
Reads all the history for all the web browsers.
1 import web_browser_history; 2 import std.stdio : stdout; 3 import derelict.sqlite3.sqlite : DerelictSQLite3; 4 5 DerelictSQLite3.load(); 6 7 foreach (browser ; web_browser_history.getInstalledBrowsers()) { 8 web_browser_history.readHistory(browser, delegate(string url, int visit_count) { 9 stdout.writefln("browser:%s, url:%s, count:%s", browser, url, visit_count); 10 }); 11 }
1.2.0
Boost Software License - Version 1.0
Get web browser history with the D programming language
Home page: https://github.com/workhorsy/d-web-browser-history