|
|
|
|
|
by bertman
1326 days ago
|
|
On your website, you say "Also, we NEVER record any of your personal data".
Could you explain this piece of code from your extension then? : else if (request.type === "removeTab") {
chrome.tabs.get(
parseInt(request.tabId),
function(tab) {
if (chrome.runtime.id === PROD_EXTENSION_ID) {
registerAnalytics(database, {
type: "registerAnalyticsEvent",
analyticsType: "closed_tab",
meta: {
url: tab.url
}
})
}
}
I hope I'm wrong but this looks like the URL of each tab that a user closes or "hides" before a meeting is sent to your analytics database. |
|