-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
213 lines (192 loc) Β· 6.27 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amazon Sponsored Content Dimmer - Chrome Extension</title>
<style>
:root {
--primary-color: #232f3e;
--secondary-color: #ff9900;
--text-color: #333;
--light-gray: #f5f5f5;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text-color);
overflow-x: hidden;
}
header {
background-color: var(--primary-color);
color: white;
padding: 2rem 0;
text-align: center;
}
.logo {
width: 128px;
height: 128px;
margin-bottom: 1rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.cta-button {
display: inline-block;
background-color: var(--secondary-color);
color: var(--primary-color);
padding: 1rem 2rem;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
margin: 1rem 0;
transition: transform 0.2s ease;
}
.cta-button:hover {
transform: translateY(-2px);
}
.features {
padding: 4rem 0;
background-color: var(--light-gray);
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.feature-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}
.how-it-works {
padding: 4rem 0;
}
.step-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.step-card {
text-align: center;
padding: 2rem;
}
.step-number {
width: 40px;
height: 40px;
background-color: var(--secondary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
font-weight: bold;
}
footer {
background-color: var(--primary-color);
color: white;
padding: 2rem 0;
text-align: center;
margin-top: 4rem;
}
footer a {
color: var(--secondary-color);
text-decoration: none;
}
</style>
</head>
<body>
<header>
<div class="container">
<img src="/api/placeholder/128/128" alt="Extension Logo" class="logo">
<h1>Amazon Sponsored Content Dimmer</h1>
<p>Enhance your Amazon shopping experience by dimming sponsored content</p>
<a href="https://chrome.google.com/webstore" class="cta-button">Add to Chrome - It's Free!</a>
</div>
</header>
<section class="features">
<div class="container">
<h2>Features</h2>
<div class="feature-grid">
<div class="feature-card">
<h3>π Smart Detection</h3>
<p>Automatically identifies and dims sponsored products and advertisements on Amazon</p>
</div>
<div class="feature-card">
<h3>π Global Support</h3>
<p>Works on all Amazon regional websites worldwide</p>
</div>
<div class="feature-card">
<h3>β‘ Lightning Fast</h3>
<p>Zero impact on page loading speed and browsing experience</p>
</div>
<div class="feature-card">
<h3>π Privacy First</h3>
<p>No data collection, works entirely on your device</p>
</div>
<div class="feature-card">
<h3>π Interactive</h3>
<p>Hover over dimmed items to see them clearly</p>
</div>
<div class="feature-card">
<h3>π¨ Clean Design</h3>
<p>Non-intrusive visual changes that maintain Amazon's functionality</p>
</div>
</div>
</div>
</section>
<section class="how-it-works">
<div class="container">
<h2>How It Works</h2>
<div class="step-grid">
<div class="step-card">
<div class="step-number">1</div>
<h3>Install</h3>
<p>Add the extension to Chrome with one click</p>
</div>
<div class="step-card">
<div class="step-number">2</div>
<h3>Browse</h3>
<p>Visit any Amazon website as usual</p>
</div>
<div class="step-card">
<div class="step-number">3</div>
<h3>Shop</h3>
<p>Sponsored content appears dimmed automatically</p>
</div>
<div class="step-card">
<div class="step-number">4</div>
<h3>Interact</h3>
<p>Hover over any dimmed content to view it clearly</p>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>Developed by Mauricio Bridge</p>
<p><a href="privacy-policy.html">Privacy Policy</a></p>
<p>Not affiliated with Amazon.com, Inc.</p>
</div>
</footer>
</body>
</html>