A WebExtension for Tracking your own Digital Trail.
This extension tracks the websites you visit and then tracks which other websites/hosts are sent requests during your normal web browsing.
- Clone this repo or download as a zip and unzip.
To add to Chrome:
- Open the Extension Management page by navigating to
chrome://extensions
. The Extension Management page can also be opened by clicking on the Chrome menu, hovering over More Tools then selecting Extensions. - Enable Developer Mode by clicking the toggle switch next to Developer mode.
- Click the LOAD UNPACKED button and select the extension directory.
To add to Firefox:
We use Kibana on Docker to analyse the data collected through Trails. To install:
docker pull docker.elastic.co/elasticsearch/elasticsearch:6.4.1
docker pull docker.elastic.co/kibana/kibana:6.4.1
docker network create elk
docker run -d -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" --name elasticsearch --net elk docker.elastic.co/elasticsearch/elasticsearch:6.4.1
docker run -d -p 5601:5601 -e "discovery.type=single-node" --name kibana --net elk docker.elastic.co/kibana/kibana:6.4.1