-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (61 loc) · 4.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Explode the Web!</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/icons/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/icons/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/icons/favicon_io/favicon-16x16.png">
<link rel="manifest" href="assets/img/icons/favicon_io/site.webmanifest">
<!-- <link rel="shortcut icon" type="image/x-icon" href="assets/img/icons/favicon_io/favicon.ico"> -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/styles/atom-one-dark.min.css">
<link rel="stylesheet" href="assets/css/www-styles.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12 col-md-10 offset-md-1">
<h1 id="explode-the-web">Explode the Web!</h1>
<p>Originally published as a chapter the tutorial has now been updated and improved:</p>
<ul>
<li>Install this browser extension (<a href="https://chrome.google.com/webstore/detail/explode-the-web/dmedbnfdhjfppcgbccpfaigicbnajhod">Chrome</a> or <a href="https://addons.mozilla.org/addon/explode-the-web/">Firefox</a>) to explode web pages with third party trackers.</li>
<li>Read <a href="https://owenmundy.com/_site/content/_info/writing/sc_cookbook_2_browser_blowup.pdf">Browser Blowup: Explode Web Pages Containing Third-Party Trackers</a> (2019).</li>
<li>Follow the <a href="tutorial/slides/0-introduction.html">new tutorial</a> to learn how to build your own browser extension.</li>
</ul>
<img width=600 src="documentation/2018-explosions-cnn/exploded-cnn-1280x800.png">
<h2 id="browser-blowup-tutorial">Browser Blowup Tutorial</h2>
<ul>
<li>0-Introduction <a href="tutorial/slides/0-introduction.html">slides</a></li>
<li>1-Hello world! <a href="tutorial/slides/1-hello-world.html">slides</a></li>
<li>2-Architecture and debugging <a href="tutorial/slides/2-archicture.html">slides</a></li>
<li>3-Working with the DOM <a href="tutorial/slides/3-dom.html">slides</a></li>
<li>4-Create the explosion <a href="tutorial/slides/4-explosion.html">slides</a></li>
<li>5-Examples <a href="tutorial/slides/5-examples.html">slides</a></li>
</ul>
<h2 id="credits">Credits</h2>
<p>Dietrick, Joelle, Gretta Louw, and Owen Mundy. “<a href="https://owenmundy.com/_site/content/_info/writing/sc_cookbook_2_browser_blowup.pdf">Browser Blowup: Explode Web Pages Containing Third-Party Trackers.</a>” In <a href="http://signalculture.org/cookbookvol2.html#.XvZmqJNKiL4">Signal Culture Cookbook Vol.2</a>, edited by Jason Bernagozzi, Vol. 2, 2019.</p>
<h2 id="to-do">To Do</h2>
<ul>
<li>Add interaction instructions for console</li>
<li>Finish part 4</li>
<li>Align Marp setup with other projects</li>
</ul>
<h2 id="privacy-policy">Privacy Policy</h2>
<p>This extension does not collect data.</p>
<h2 id="3rd-party-libraries">3rd-party Libraries</h2>
<p>This extension uses <a href="https://github.com/disconnectme/disconnect-tracking-protection">Disconnect Tracking Services list</a> and the following libraries:</p>
<pre><code>https://github.com/juliangarnier/anime/blob/3.2.0/lib/anime.min.js
https://github.com/jquery/jquery/releases/tag/3.6.0
https://github.com/cure53/DOMPurify/releases/tag/2.3.4
</code></pre>
<p><small>^These are the official release URLs for Firefox Addon review</small></p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</body>
</html>