JavaScript Restrictor
Browser extension that improves privacy and security
Loading...
Searching...
No Matches
fp_report.js File Reference

Functions that summarize fingerprints and generate FPD report. More...

Functions

function createReport (data)
 

Variables

let hiddenTraces = {}
 
let showDescription
 

Detailed Description

Functions that summarize fingerprints and generate FPD report.

Author
Copyright (C) 2022 Marek Salon
License:
SPDX-License-Identifier: GPL-3.0-or-later

Function Documentation

◆ createReport()

function createReport (   data)

The function that populates FPD report page with data from the latest evaluation and hooks up listeners.

Parameters
dataInformation about latest fingerprinting evaluation consisting of all essential FPD objects.
Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ hiddenTraces

let hiddenTraces = {}

◆ showDescription

let showDescription
Initial value:
= () => {
for (let element of document.querySelectorAll(".description")) {
element.classList.toggle("hidden");
}
}
window.addEventListener("DOMContentLoaded", function() {
document.getElementById("titletext").innerHTML += '<button id="help" class="help">?</button>';
document.getElementById("help").addEventListener("click", showDescription);
})
let showDescription
Definition fp_report.js:283