0

How does YouTube store user data like recommendations? I'm not logged in, Tried removing localStorage, cookie, cache.

AlignItems
  • 59
  • 11

2 Answers2

2

F12 -> Application -> Storage -> Clear site data

Make sure that the following options are checked:

  • including third-party cookies
  • Unregister service workers
  • local and session storage
  • Indexed DB
  • Web SQL
  • Cookies
  • Cache sotrage
xjw_2000
  • 356
  • 1
  • 5
0

You may not remove the cookies properly. Try to install a plugins called Cookie AutoDelet for your browser.

HamiD
  • 1,075
  • 1
  • 6
  • 22
  • I did `document.cookie = ''` – AlignItems Sep 06 '22 at 12:58
  • Plz take a look: https://stackoverflow.com/questions/179355/clearing-all-cookies-with-javascript you have to create a loop to remove the cookies using JS, otherwise you need to remove them one by one – HamiD Sep 06 '22 at 13:08
  • Looks like YouTube's using cookies - but when I remove it, the cookie restore. – AlignItems Sep 07 '22 at 12:49