Mattthew commited on
Commit
49cd608
1 Parent(s): 474474d

still can't save with chrome

Browse files
Files changed (1) hide show
  1. index.js +5 -5
index.js CHANGED
@@ -181,11 +181,11 @@ async function deleteItemBasedOnAccessType(item) {
181
  function alertNoStoringAccess(wait) {
182
  window.setTimeout(function(){
183
  let msg = '';
184
- msg += 'My apologies, your browser settings block the ability to save settings and favorites. This was working on Firefox, Safari, and Chrome as of Sep. 2023. Suggestions:\n';
185
- msg += '1. Try a different browser\n'
186
- msg += '2. Check browser privacy settings\n';
187
- msg += '3. Download the app to use offline\n\n';
188
- msg += 'This app doesn\'t use cookies, saves all settings locally, and never sends data to any server. However, some privacy settings may block all data storage.'
189
  alert(msg);
190
  },wait);
191
  }
 
181
  function alertNoStoringAccess(wait) {
182
  window.setTimeout(function(){
183
  let msg = '';
184
+ msg += 'My apologies, your browser settings block the ability to save settings and favorites. Suggestions:\n';
185
+ msg += '1. Try Firefox, Safari, or Edge\n'
186
+ msg += '2. Download the app to use offline\n';
187
+ msg += '3. On Chrome, enable 3rd-party cookies (not recommended)\n\n';
188
+ msg += 'This app doesn\'t use cookies, never sends data to any server, and saves all data locally. However, when you block 3rd-party cookies in Chrome, it also blocks local data storage. Chrome wants you to have a painful experience if you turn off 3rd-party cookies.';
189
  alert(msg);
190
  },wait);
191
  }