in src/pro-src/rules.js [556:562]
fetchHistory() {
const storageHistory = localStorage.getItem(LOCAL_STORAGE_ACCESS_STRING);
this.history = storageHistory ? JSON.parse(storageHistory) : {};
if (!this.history.path) this.history.path = [];
if (!this.history.timePerPage) this.history.timePerPage = {};
if (!this.history.rulesTriggered) this.history.rulesTriggered = [];
}