You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting with version 2.4.3, Snoozz will be collecting Click Analytics in the popup menu.
I am starting to collate the option you click when you a snooze a tab - "In One Hour", "Next Monday" etc. This will allow me to see which options are being used the most and help me make decisions in the future when creating new options.
No other data is gathered. I don't track what you are snoozing, location, your IP address, language, browser, OS. I am only here for a single string of click data.
All collected data is uploaded to my own server on the Snoozz website. I have written a tiny API (which is also open source), and you can view every single click on the Stats page. There is no data processing or anything happening behind the scenes, so the stats on that page will update almost instantly.
All the code for this change is located in a new file called /scripts/poll.js, but theres so little code so I'm also reposting it below. As you can see, I am only sending the choice you have selected, nothing else - not even a timestamp. You can check out
This poll(...) function is only called once from the background page /scripts/background.js. It is only triggered from the Snoozz popup /scripts/popup.js when you snooze (or edit) a tab/window. It is done in the background to ensure that the speed of the extension is not compromised. If you are offline at the time of snoozing no data will be transmitted - even when your re-connect later.
There is a new setting to toggle this on/off. It will be on by default.
I've never built something like this before so let me know if I've done something wrong.
The text was updated successfully, but these errors were encountered:
Starting with version 2.4.3, Snoozz will be collecting Click Analytics in the popup menu.
I am starting to collate the option you click when you a snooze a tab - "In One Hour", "Next Monday" etc. This will allow me to see which options are being used the most and help me make decisions in the future when creating new options.
No other data is gathered. I don't track what you are snoozing, location, your IP address, language, browser, OS. I am only here for a single string of click data.
All collected data is uploaded to my own server on the Snoozz website. I have written a tiny API (which is also open source), and you can view every single click on the Stats page. There is no data processing or anything happening behind the scenes, so the stats on that page will update almost instantly.
All the code for this change is located in a new file called
/scripts/poll.js
, but theres so little code so I'm also reposting it below. As you can see, I am only sending thechoice
you have selected, nothing else - not even a timestamp. You can check outThis
poll(...)
function is only called once from the background page/scripts/background.js
. It is only triggered from the Snoozz popup/scripts/popup.js
when you snooze (or edit) a tab/window. It is done in the background to ensure that the speed of the extension is not compromised. If you are offline at the time of snoozing no data will be transmitted - even when your re-connect later.There is a new setting to toggle this on/off. It will be on by default.
I've never built something like this before so let me know if I've done something wrong.
The text was updated successfully, but these errors were encountered: