Files
rebloor 82217a05bc Replace var with let in examples (#484)
* Replace var with let in examples

store-collected-images/webextension-plain/deps/uuidv4.js

* Reverted third–party code
2022-08-11 04:27:28 +12:00

44 lines
1.1 KiB
JavaScript

// Load existent stats with the storage API.
let gettingStoredStats = browser.storage.local.get();
gettingStoredStats.then(results => {
// Initialize the saved stats if not yet initialized.
if (!results.stats) {
results = {
host: {},
type: {}
};
}
// Monitor completed navigation events and update
// stats accordingly.
browser.webNavigation.onCommitted.addListener((evt) => {
if (evt.frameId !== 0) {
return;
}
let transitionType = evt.transitionType;
results.type[transitionType] = results.type[transitionType] || 0;
results.type[transitionType]++;
// Persist the updated stats.
browser.storage.local.set(results);
});
browser.webNavigation.onCompleted.addListener(evt => {
// Filter out any sub-frame related navigation event
if (evt.frameId !== 0) {
return;
}
const url = new URL(evt.url);
results.host[url.hostname] = results.host[url.hostname] || 0;
results.host[url.hostname]++;
// Persist the updated stats.
browser.storage.local.set(results);
}, {
url: [{schemes: ["http", "https"]}]});
});