README

Tracker Extension Software

The tracker extension software is located in DEV\capture.
Json lint tool: https://jsonlint.com/

Manual Download Coordinates

Run in service worker context:

downloadCoordinatesSafe();

Or run in any context:

chrome.runtime.sendMessage({action: "saveCoordinatesSafe"}, function(response) {
    if (response && response.success) {
        console.log('Coordinates downloaded successfully!');
    } else {
        console.log('Failed to download coordinates.');
    }
});