Skip to content

Latest commit

 

History

History
94 lines (63 loc) · 3.09 KB

09-other.md

File metadata and controls

94 lines (63 loc) · 3.09 KB

The Network Tab!

http://money.cnn.com/2015/01/21/technology/security/obamacare-website-advertisers/

https://www.eff.org/deeplinks/2015/01/healthcare.gov-sends-personal-data

https://fivethirtyeight.com/features/fandango-movies-ratings/

Hanging out in the Network Tab

EXAMPLE

TRY IT

Simple request to your simple website. https://dmil.github.io/dhrumil-simple-website/

Modifying a facebook profile picture.

Making the Ad Go Away on FiveThirtyEight

// get rid of top banner
document.getElementById('masterad').setAttribute('style', 'display: none !important');

// get rid of sidebar ads
for (el of document.getElementsByClassName('fivethirtyeight-sidebar-ad')) {
    el.setAttribute('style', 'display: none !important');
}

Modifying CSS

Modifying JavaScript

Cookies

Types of Cookies

https://en.wikipedia.org/wiki/HTTP_cookie#Terminology

Check out the cookies on a website.

https://www.dccourts.gov/cco/maincase.jsf

Not a cookie, but interesting

https://www.propublica.org/about/pixelping

➡️ Try It

Tell me everything you can find out about a website from the network tab.

  • cookies
  • technologies the website uses
  • what takes a long time to load / large elements on page
  • local storage