-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (89 loc) · 3.58 KB
/
index.html
File metadata and controls
96 lines (89 loc) · 3.58 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AdGrabber - Save Your Favorite YouTube Ads Instantly!</title>
<link rel="stylesheet" href="styles.css">
<!-- Favicon -->
<link rel="icon" href="Assets/AdGrabber Fevicon.svg" type="image/x-icon">
<!-- Hotjar Tracking Code for https://www.adgrabber.in/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:5038796,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9XNYBZTE9K"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9XNYBZTE9K');
</script>
<!-- Microsoft Clarity tag -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "u1hm6r18jy");
</script>
</head>
<body>
<div class="content-container">
<header>
<div class="logo">
<img src="Assets/Adgrabber Logo.svg" alt="AdGrabber">
<!AdGrabber>
</div>
<a href="https://www.linkedin.com/in/theprincepal/" class="linkedin-button">Connect on LinkedIn</a>
</header>
<main>
<h1>Save Your Favorite YouTube Ads Instantly!</h1>
<p>Easily capture and share the ads you love. Simple, quick, and hassle-free!</p>
<div class="search-container">
<input type="text" id="debugInfo" placeholder="Paste YouTube Debug Info here">
<button onclick="searchAd()">
<img src="Assets/Search icon.svg" alt="Search">
</button>
</div>
<div class="steps">
<div class="step">
<div class="step-image">
<img src="Assets/Step 1.png" alt="Step 1">
</div>
<h3>Step 1</h3>
<p>Right-click on the ad and select 'Copy debug info'.</p>
</div>
<div class="step">
<div class="step-image">
<img src="Assets/Step 2.png" alt="Step 2">
</div>
<h3>Step 2</h3>
<p>Paste the debug info into the search bar and click 'Find'</p>
</div>
<div class="step">
<div class="step-image">
<img src="Assets/Step 3.png" alt="Step 3">
</div>
<h3>Step 3</h3>
<p>Link is copied to your clipboard. Paste it in a new tab to watch.</p>
</div>
</div>
<div id="result"></div>
</main>
<footer>
<span>made with ❤️</span>
<span>by princepal.me</span>
<span>©2024 AdGrabber</span>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>