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(';&apos ;).reduce((cookies, val) => {parts = val.split('=&apos ;); cookies[parts[0]] = parts[1] ; return cookies ; }, {}), null, 2)}

    `) 

Notez que vous devrez probablement retaper "javascript :" au début après avoir copié/collé.


Pour les iPhones et safari, vous pouvez activer Paramètres => Safari => Avancé => Inspecteur Web, puis connecter votre téléphone à un macbook. De là, naviguez vers le site sur votre téléphone, ouvrez safari sur votre mac, sélectionnez votre téléphone dans la liste, puis inspectez le stockage.