[C++] List Chrome History

Katılım
16 Temmuz 2020
Mesajlar
1.246
Makaleler
12
Çözümler
8
Daha fazla  
Cinsiyet
Erkek
Meslek
Software Developer

ChromeHistory​

View all history! It supports multiple profiles.

C++:
//List all history
    for (int i = 0; i < Profiles.size(); i++) {
        if (ProfileHistory[i].size() > 0) {
            std::vector<std::string> History = ProfileHistory[i];
            for (int j = 0; j < History.size(); j++) {
                std::cout << "[ProfileID: " << (i + 1) << " | HistoryID: " << (j + 1) << "] " << History[j] << std::endl;
            }
        }
    }

Built With​

  • SQLite - SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world. SQLite is built into all mobile phones and most computers and comes bundled inside countless other applications that people use every day.
  • CppSQLite - A simple and easy-to-use cross-platform C++ wrapper for the SQLite API. Fork of the CppSQLite project, originally by Rob Groves, currently updated and maintained by NeoSmart Technologies.

Source​

ChromeHistory
 

Yeni konular

Geri
Yukarı