How to view (not just clear) cookies from the iPhone, Android and other smartphones

If you have access to the phone and this is for Chrome, navigate to the website you’d like to see the cookies for, and then paste one of the following to view the cookies:

  1. // to alert the cookies as plain text 
  2. javascript:alert(document.cookie); 
  3.  
  4. // to show cookies as document 
  5. javascript:document.write(document.cookie) 
  6.  
  7. // to show it in the window pretty printed 
  8. javascript:document.write(`
    ${JSON.stringify(document.cookie.split(';').reduce((cookies, val) => { partes = val.split('='); cookies[partes[0]] = partes[1]; return cookies; }, {}), null, 2)}

    `) 

Tenga en cuenta que probablemente tendrá que volver a escribir "javascript:" en la parte delantera después de copiar/pegar.

Para iPhones y safari, puede activar Ajustes => Safari => Avanzado => Inspector Web, y luego conectar su teléfono a un macbook. Desde ahí navega al sitio en tu teléfono, abre safari en tu mac, selecciona tu teléfono de la lista, y luego inspecciona el almacenamiento.