Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GDA-113] Detailed stats for the new tab page addon #696

Merged
merged 1 commit into from Mar 5, 2021
Merged
Changes from all commits
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Details stats for the new tab page addon

Ghostery Dawn New Tab Page is going to show WTM popup with number of trackers blocked grouped by category. Fortunately commons `insight` module already provide all required information.
  • Loading branch information
chrmod committed Mar 5, 2021
commit 1c28e6075d05e3bb0ca8cd70fdbb52ad7124204b
@@ -1416,6 +1416,12 @@ function initializeEventListeners() {
getDataForGhosteryTab(data => sendResponse({ historicalDataAndSettings: data }));
return true;
}

if (recognized && request.name === 'getDashboardStats') {
insights.action('getDashboardStats', ...(request.args || [])).then(sendResponse);
return true;
}

return false;
});
}
ProTip! Use n and p to navigate between commits in a pull request.