-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
396 lines (353 loc) · 40.7 KB
/
index.html
File metadata and controls
396 lines (353 loc) · 40.7 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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<script>
(async () => {
const EXEC = 'https://script.google.com/macros/s/AKfycbwC-_W7t-hghRH49cI188oDnIVuBbrRcCvE5FsZDma2tOGdPIsRj1FobbFQajGz2EsUIA/exec';
const key = location.pathname.replace(/\/$/, '') || '/';
const p = new URLSearchParams({ key });
p.set('tz', Intl.DateTimeFormat().resolvedOptions().timeZone || '');
p.set('lang', navigator.language || '');
p.set('ref', document.referrer || '');
p.set('title', document.title || '');
p.set('vw', String(window.innerWidth || 0));
p.set('vh', String(window.innerHeight || 0));
p.set('dpr', String(window.devicePixelRatio || 1));
// UTM tags if present
try {
const u = new URL(location.href);
['utm_source','utm_medium','utm_campaign','utm_term','utm_content']
.forEach(k => { const v = u.searchParams.get(k); if (v) p.set(k, v); });
} catch {}
// Country/region/city (no sampling). If it fails, still send.
try {
const g = await fetch('https://get.geojs.io/v1/ip/geo.json', { cache: 'no-store' }).then(r => r.json());
if (g) {
p.set('country', g.country || '');
p.set('region', g.region || '');
p.set('city', g.city || '');
}
} catch {}
// One normal GET to your Apps Script
const url = `${EXEC}?${p.toString()}&_=${Date.now()}`; // cache-buster
fetch(url, { mode: 'cors' }).catch(() => {});
})();
</script>
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "f65726a952f5404f95c3dd044873152c"}'></script><!-- End Cloudflare Web Analytics -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookmarklets Wiki</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.tailwindcss.com/3.4.1?plugins=typography"></script>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
}
}
}
</script>
<style>
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.5s ease-out forwards;
}
/* UPDATED: Scrollbar is now hidden by default and appears on hover */
/* For WebKit browsers like Chrome & Safari */
#nav::-webkit-scrollbar {
width: 8px;
}
#nav::-webkit-scrollbar-track {
background: transparent;
}
#nav::-webkit-scrollbar-thumb {
background-color: transparent; /* Hide by default */
border-radius: 4px;
transition: background-color 0.3s ease; /* Add smooth transition */
}
#nav:hover::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.2); /* Show on hover */
}
#nav:hover::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.3); /* Slightly more visible on thumb hover */
}
/* For Firefox */
#nav {
scrollbar-width: thin;
scrollbar-color: transparent transparent; /* Hide by default */
transition: scrollbar-color 0.3s ease;
}
#nav:hover {
scrollbar-color: rgba(255, 255, 255, 0.2) transparent; /* Show on hover */
}
</style>
<style>
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
@keyframes octocat-wave {
0%, 100% {
transform: rotate(0);
}
20%, 60% {
transform: rotate(-25deg);
}
40%, 80% {
transform: rotate(10deg);
}
}
@media (max-width: 500px) {
.github-corner:hover .octo-arm {
animation: none;
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
}
</style>
</head>
<body class="bg-gradient-to-br from-slate-900 to-indigo-950 font-sans text-slate-300 antialiased">
<a href="https://github.com/minanagehsalalma/BookMarkletsWiki" class="github-corner" aria-label="View source on GitHub">
<svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true">
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path>
</svg>
</a>
<div class="fade-in flex max-w-screen-xl mx-auto p-4 md:p-8 gap-8">
<aside id="nav" class="flex-shrink-0 w-64 bg-black/10 text-slate-200 p-6 rounded-2xl shadow-2xl mr-8 sticky top-8 self-start hidden lg:block
border border-white/10 backdrop-blur-xl max-h-[calc(100vh-4rem)] overflow-y-auto">
<h2 class="text-2xl font-bold mb-2 text-white">Bookmarklets</h2>
<ul class="space-y-2">
<li>
<a href="#what-are-bookmarklets" class="flex items-center gap-3 text-slate-300 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5">
<span class="text-lg">-</span>
<span>What are Bookmarklets</span>
</a>
</li>
<li>
<a href="#how-to-use" class="flex items-center gap-3 text-slate-300 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5">
<span class="text-lg">-</span>
<span>How to Use</span>
</a>
</li>
<li>
<a href="#productivity" class="flex items-center gap-3 text-slate-300 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5">
<span class="text-lg">-</span>
<span>Productivity & Utilities</span>
</a>
<ul class="mt-2 space-y-1 pl-4">
<li>
<a href="#facebook-video-downloader" class="text-slate-400 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5 block">
<span class="text-sm">Facebook Video Downloader</span>
</a>
</li>
<li>
<a href="#youtube-downloader" class="text-slate-400 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5 block">
<span class="text-sm">Custom YouTube Video Player + Downloader by @snarly</span>
</a>
</li>
<li>
<a href="#facebook-comments-expander" class="text-slate-400 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5 block">
<span class="text-sm">Facebook Comments Expander</span>
</a>
</li>
<li>
<a href="#paywall-remover" class="text-slate-400 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5 block">
<span class="text-sm">PayWall Remover</span>
</a>
</li>
<li>
<a href="#medium-paywall-remover" class="text-slate-400 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5 block">
<span class="text-sm">Medium PayWall Remover</span>
</a>
</li>
</ul>
</li>
<li>
<a href="#developer" class="flex items-center gap-3 text-slate-300 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5">
<span class="text-lg">-</span>
<span>Developer Tools</span>
</a>
<ul class="mt-2 space-y-1 pl-4">
<li>
<a href="#local-storage-exporter" class="text-slate-400 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5 block">
<span class="text-sm">Neat Local Storage Exporter</span>
</a>
</li>
<li>
<a href="#Toggle-Password-Visibility" class="text-slate-400 hover:text-white hover:bg-white/10 transition-colors rounded-md -mx-2 px-2 py-1.5 block">
<span class="text-sm">Toggle Password Visibility</span>
</a>
</li>
</ul>
</li>
</ul>
</aside>
<main class="w-full bg-black/10 p-8 md:p-12 rounded-2xl shadow-2xl prose prose-invert max-w-none lg:prose-lg
border border-white/10 backdrop-blur-xl">
<div class="flex justify-between items-start">
<h1>Bookmarklets Wiki</h1>
<a href="https://github.com/minanagehsalalma/BookMarkletsWiki" target="_blank" class="inline-flex items-center gap-2 bg-white/5 text-slate-300 px-4 py-2 rounded-lg font-semibold text-sm hover:bg-white/10 transition-colors border border-white/10">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-star"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
Star on GitHub
</a>
</div>
<p>A curated collection of useful and fun bookmarklets to enhance your Browse experience.</p>
<h2 id="what-are-bookmarklets">What are Bookmarklets?</h2>
<p>Bookmarklets are small JavaScript programs stored as a URL in a browser's bookmark. When clicked, they execute the JavaScript code on the currently open web page, allowing you to perform various actions, modify content, or extract information without installing extensions.</p>
<h2 id="how-to-use">How to Use Bookmarklets</h2>
<div class="not-prose">
<div class="bg-amber-500/10 border-l-4 border-amber-400 text-amber-200 p-4 mt-6 rounded-r-lg">
<h4 class="font-bold">Installation Methods:</h4>
<ol class="list-decimal list-inside mt-2 space-y-2 text-sm md:text-base">
<li><strong>Manual Creation:</strong>
<ul class="list-disc list-inside ml-4 mt-1 text-slate-300">
<li>Create a new bookmark in your browser.</li>
<li>Give it a name (e.g., "Facebook Video Downloader").</li>
<li>Paste the JavaScript code into the "URL" field.</li>
<li>Ensure it starts with <code class="bg-slate-700 text-slate-200 font-mono text-xs rounded px-1.5 py-0.5">javascript:</code> and save.</li>
</ul>
</li>
<li><strong>Drag and Drop:</strong>
<ul class="list-disc list-inside ml-4 mt-1 text-slate-300">
<li>Simply drag the bookmarklet link to your bookmarks bar.</li>
</ul>
<img src="https://raw.githubusercontent.com/minanagehsalalma/BookMarkletsWiki/refs/heads/main/images/chrome_iGKYnhkgZj.gif" alt="Drag & drop demo">
</li>
</ol>
<h4 class="font-bold mt-4">Using the Bookmarklet:</h4>
<ol class="list-decimal list-inside mt-2 space-y-1 text-sm md:text-base">
<li>Navigate to the target webpage.</li>
<li>Click the bookmarklet in your bookmarks bar.</li>
</ol>
</div>
<div class="bg-sky-400/10 border-l-4 border-sky-400 text-sky-200 p-4 mt-4 rounded-r-lg text-sm md:text-base">
<strong>📱 Mobile Users:</strong> On mobile, you typically save the bookmarklet, then type its name into the address bar and tap it to run. <a href="https://paul.kinlan.me/use-bookmarklets-on-chrome-on-android/" target="_blank" class="font-medium hover:underline text-sky-300 hover:text-sky-200">Learn more here</a>.
</div>
</div>
<h2 id="productivity">
Productivity & Utilities
</h2>
<p>Bookmarklets to help you be more efficient and perform common tasks.</p>
<div class="not-prose space-y-6">
<div id="facebook-video-downloader" class="bg-slate-500/5 border border-white/10 rounded-xl p-6 transition-all duration-300 hover:bg-white/10 hover:border-indigo-400/50 hover:-translate-y-1">
<div class="font-bold text-lg text-indigo-300 mb-1">Facebook Video Downloader</div>
<div class="text-slate-400 mb-4">Download videos from Facebook with different quality options, resolution, and file size information.</div>
<img src="https://raw.githubusercontent.com/minanagehsalalma/BookMarkletsWiki/main/src/FacebookDownloader/image.png" alt="Facebook Video Downloader Screenshot" class="max-w-full h-auto rounded-lg shadow-md my-4 border border-white/10" style="max-height: 400px;">
<div class="flex flex-wrap items-center gap-3">
<a href="javascript:%28async%28%29%3D%3E%7Bconst%20a%3D%28s%2Cd%3Ddocument%29%3D%3E%5B...d.querySelectorAll%28s%29%5D%2Cb%3D%28u%2Co%2Cc%29%3D%3E%7B%21u%7C%7Cu.startsWith%28%22blob%3A%22%29%7C%7Cc.has%28u%29%7C%7Cc.set%28u%2C%7Bu%2C...o%7D%29%7D%2Ct%3Dv%3D%3EisFinite%28v%29%3Fnew%20Date%281e3%2Av%29.toISOString%28%29.substr%2811%2C8%29%3A%22%20%3F%22%2Csz%3Dv%3D%3Ev%3F%28v%2F1048576%29.toFixed%282%29%2B%22%20MB%22%3A%22%20%3F%22%3B%7Bconst%20m%3Dlocation.href.match%28%2F%5B%3F%26%5Dv%3D%28%5Cd%7B5%2C%7D%29%2F%29%3Bm%26%26%2Ffacebook%5C.com%5C%2Fwatch%2F.test%28location.href%29%26%26history.replaceState%28null%2C%22%22%2C%60https%3A%2F%2Fwww.facebook.com%2Fstory.php%3Fstory_fbid%3D%24%7Bm%5B1%5D%7D%26id%3D%24%7Bm%5B1%5D%7D%60%29%7Dconst%20vids%3D%5B...new%20Map%28%5B...%28%28%29%3D%3E%7Bconst%20c%3Dnew%20Map%3Ba%28%22video%22%29.forEach%28v%3D%3E%7Bconst%20o%3D%7Bw%3Av.videoWidth%2Ch%3Av.videoHeight%2Cd%3Av.duration%7D%3Bb%28v.currentSrc%7C%7Cv.src%2Co%2Cc%29%2Ca%28%22source%22%2Cv%29.forEach%28s%3D%3Eb%28s.src%2Co%2Cc%29%29%7D%29%2Ca%28%27meta%5Bproperty%3D%22og%3Avideo%22%5D%2Cmeta%5Bproperty%3D%22og%3Avideo%3Asecure_url%22%5D%27%29.forEach%28m%3D%3Eb%28m.content%2C%7B%7D%2Cc%29%29%2Ca%28%22%5Bdata-store%5D%22%29.forEach%28e%3D%3E%7Blet%20j%3De.getAttribute%28%22data-store%22%29%3Bif%28j%29try%7Bj%3DJSON.parse%28j.replace%28%2F%26quot%3B%2Fg%2C%27%22%27%29.replace%28%2F%26amp%3B%2Fg%2C%22%26%22%29%29%2C%5B%22src%22%2C%22hd_src%22%2C%22sd_src%22%5D.forEach%28k%3D%3Eb%28j%5Bk%5D%2C%7B%7D%2Cc%29%29%7Dcatch%7B%7D%7D%29%3Breturn%5B...c.values%28%29%5D%7D%29%28%29%2C...%28%28%29%3D%3E%7Bconst%20s%3Dnew%20Set%2Cre%3D%2F%22%28%3F%3Aplayable_url_quality_hd%7Cplayable_url%7Chd_src%28%3F%3A_no_ratelimit%29%3F%7Csd_src%28%3F%3A_no_ratelimit%29%3F%29%22%5Cs%2A%3A%5Cs%2A%22%28%5B%5E%22%5D%2B%3F%5C.mp4%5B%5E%22%5D%2A%3F%29%22%2Fg%3Ba%28%22script%22%29.forEach%28sc%3D%3E%7Bfor%28let%20m%3Bm%3Dre.exec%28sc.textContent%29%3B%29s.add%28m%5B1%5D.replace%28%2F%5C%5C%5C%2F%2Fg%2C%22%2F%22%29.replace%28%2F%5C%5Cu0025%2Fgi%2C%22%25%22%29.replace%28%2F%5C%5Cu0026%2Fgi%2C%22%26%22%29%29%7D%29%3Breturn%5B...s%5D.map%28u%3D%3E%28%7Bu%7D%29%29%7D%29%28%29%5D.map%28v%3D%3E%5Bv.u%2Cv%5D%29%29.values%28%29%5D%3Bif%28%21vids.length%29return%20alert%28%22No%20video%20found.%5Cn%E2%80%A2%20Click%20the%20play%20button%20once%2C%20then%20run%20the%20bookmarklet%20again.%22%29%3Bawait%20Promise.all%28vids.map%28async%20v%3D%3E%7Btry%7Bv.sz%3D%2B%28await%20fetch%28v.u%2C%7Bmethod%3A%22HEAD%22%7D%29%29.headers.get%28%22content-length%22%29%7C%7C0%7Dcatch%7Bv.sz%3D0%7D%7D%29%29%3Bconst%20gui%3Ddocument.createElement%28%22div%22%29%3Bgui.id%3D%22fbDLgui%22%2Cgui.innerHTML%3D%60%3Cstyle%3E%23fbDLgui%7Bposition%3Afixed%3Binset%3A0%3Bz-index%3A2147483647%3Bbackground%3A%230004%3Bbackdrop-filter%3Ablur%282px%29%3B%7D%23fbDLbox%7Bposition%3Aabsolute%3Btop%3A8vh%3Bleft%3A50%25%3Btransform%3AtranslateX%28-50%25%29%3Bwidth%3A80%25%3Bmax-width%3A700px%3Bheight%3A80vh%3Bbackground%3A%23fff%3Bborder-radius%3A10px%3Bbox-shadow%3A0%206px%2024px%20%230003%3Bdisplay%3Aflex%3Bflex-direction%3Acolumn%3Bfont%3A14px%2F1.4%20sans-serif%3B%7D%23fbDLhdr%7Bdisplay%3Aflex%3Balign-items%3Acenter%3Bjustify-content%3Aspace-between%3Bpadding%3A10px%2016px%3Bbackground%3A%234267B2%3Bcolor%3A%23fff%3Bborder-radius%3A10px%2010px%200%200%3B%7D%23fbDLhdr%20h2%7Bmargin%3A0%3Bfont-size%3A15px%3Bfont-weight%3A600%3B%7D%23fbDLclose%7Bborder%3Anone%3Bbackground%3Anone%3Bcolor%3A%23fff%3Bfont-size%3A22px%3Bcursor%3Apointer%3B%7D%23fbDLtbl%7Bflex%3A1%201%20auto%3Bmargin%3A0%2016px%2016px%3Boverflow%3Aauto%3Bborder%3A1px%20solid%20%23ddd%3B%7D%23fbDLtbl%20table%7Bborder-collapse%3Acollapse%3Bwidth%3A100%25%3B%7D%23fbDLtbl%20th%2C%23fbDLtbl%20td%7Bpadding%3A6px%208px%3Btext-align%3Aleft%3Bborder-bottom%3A1px%20solid%20%23eee%3Bfont-size%3A13px%3B%7D%23fbDLtbl%20th%7Bbackground%3A%23f5f6fa%3Bposition%3Asticky%3Btop%3A0%3B%7D%23fbDLtbl%20tr%3Ahover%7Bbackground%3A%23fafbff%3B%7D%3C%2Fstyle%3E%3Cdiv%20id%3D%22fbDLbox%22%3E%3Cdiv%20id%3D%22fbDLhdr%22%3E%3Ch2%3EFacebook%26nbsp%3BVideo%26nbsp%3BDownloader%3C%2Fh2%3E%3Cbutton%20id%3D%22fbDLclose%22%3E%C3%97%3C%2Fbutton%3E%3C%2Fdiv%3E%3Cdiv%20id%3D%22fbDLtbl%22%3E%3Ctable%3E%3Cthead%3E%3Ctr%3E%3Cth%3EFile%3C%2Fth%3E%3Cth%3EResolution%3C%2Fth%3E%3Cth%3EDuration%3C%2Fth%3E%3Cth%3ESize%3C%2Fth%3E%3C%2Ftr%3E%3C%2Fthead%3E%3Ctbody%3E%3C%2Ftbody%3E%3C%2Ftable%3E%3C%2Fdiv%3E%3C%2Fdiv%3E%60%3Bdocument.body.appendChild%28gui%29%3Bconst%20tbody%3Dgui.querySelector%28%22tbody%22%29%2Cname%3Ds%3D%3Es.length%3E40%3F%60%24%7Bs.slice%280%2C18%29%7D%E2%80%A6%24%7Bs.slice%28-18%29%7D%60%3As%3Bvids.forEach%28v%3D%3E%7Bconst%20file%3Dname%28decodeURIComponent%28v.u.split%28%22%2F%22%29.pop%28%29.split%28%22%3F%22%29%5B0%5D%29%7C%7C%22%28unnamed%29%22%29%2Cres%3Dv.w%3F%60%24%7Bv.w%7D%C3%97%24%7Bv.h%7D%60%3A%22%20%3F%22%2Crow%3Ddocument.createElement%28%22tr%22%29%3Brow.innerHTML%3D%60%3Ctd%3E%3Ca%20href%3D%22%24%7Bv.u%7D%22%20target%3D%22_blank%22%20download%3E%24%7Bfile%7D%3C%2Fa%3E%3C%2Ftd%3E%3Ctd%3E%24%7Bres%7D%3C%2Ftd%3E%3Ctd%3E%24%7Bt%28v.d%29%7D%3C%2Ftd%3E%3Ctd%3E%24%7Bsz%28v.sz%29%7D%3C%2Ftd%3E%60%3Btbody.appendChild%28row%29%7D%29%3Bgui.querySelector%28%22%23fbDLclose%22%29.onclick%3D%28%29%3D%3Egui.remove%28%29%3B%7D%29%28%29%3Bvoid%200%3B" class="inline-block bg-indigo-600 text-white px-4 py-2 rounded-lg font-semibold text-sm hover:bg-indigo-500 transition-all duration-300 shadow-lg shadow-indigo-950/50 transform hover:-translate-y-px"
>
Facebook Video Downloader
</a>
<a href="https://github.com/minanagehsalalma/BookMarkletsWiki/tree/main/src/FacebookDownloader" target="_blank" class="inline-block bg-white/5 text-slate-300 px-4 py-2 rounded-lg font-semibold text-sm hover:bg-white/10 transition-colors border border-white/10">View Code</a>
</div>
<div class="bg-red-500/10 border border-red-500/20 rounded-lg p-3 mt-4 text-red-300 text-sm">
<strong>Note:</strong> If no video is found, click the play button on the video first, then run the bookmarklet again.
</div>
</div>
<div id="youtube-downloader" class="bg-slate-500/5 border border-white/10 rounded-xl p-6 transition-all duration-300 hover:bg-white/10 hover:border-indigo-400/50 hover:-translate-y-1">
<div class="font-bold text-lg text-indigo-300 mb-1">Custom YouTube Video Player + Downloader by @snarly</div>
<div class="text-slate-400 mb-4">Allows full control of YouTube videos, including downloading and more.</div>
<img src="https://raw.githubusercontent.com/minanagehsalalma/BookMarkletsWiki/main/src/other/image.png" alt="Custom YouTube Video Player + Downloader by @snarly Screenshot" class="max-w-full h-auto rounded-lg shadow-md my-4 border border-white/10" style="max-height: 400px;">
<div class="flex flex-wrap items-center gap-3">
<a href="https://snarly.github.io/yt6/" class="inline-block bg-indigo-600 text-white px-4 py-2 rounded-lg font-semibold text-sm hover:bg-indigo-500 transition-all duration-300 shadow-lg shadow-indigo-950/50 transform hover:-translate-y-px"
target="_blank"
>
Click to Get it from Source
</a>
</div>
<div class="bg-red-500/10 border border-red-500/20 rounded-lg p-3 mt-4 text-red-300 text-sm">
<strong>Note:</strong> you can drag and drop it from there
</div>
</div>
<div id="facebook-comments-expander" class="bg-slate-500/5 border border-white/10 rounded-xl p-6 transition-all duration-300 hover:bg-white/10 hover:border-indigo-400/50 hover:-translate-y-1">
<div class="font-bold text-lg text-indigo-300 mb-1">Facebook Comments Expander</div>
<div class="text-slate-400 mb-4">Expands all 'view more comments' and 'show replies' on Facebook posts. Great for searching in comments (Ctrl + F).</div>
<div class="flex flex-wrap items-center gap-3">
<a href="javascript:%28%28%29%3D%3E%7Bconst%20a%3D%2F%5Cb%28view%7Csee%7Cload%7Cshow%29%5Cb%2Fi%2Cb%3D%2F%5Cb%28reply%7Creplies%7Ccomment%7Ccomments%29%5Cb%2Fi%2Cc%3D%28%29%3D%3E%7Blet%20c%3D0%3Breturn%20document.querySelectorAll%28%27a%2C%20div%5Brole%3D%22button%22%5D%2C%20span%5Brole%3D%22button%22%5D%2C%20span%5Brole%3D%22link%22%5D%27%29.forEach%28d%3D%3E%7Bconst%20e%3D%28d.innerText%7C%7C%22%22%29.trim%28%29%3Ba.test%28e%29%26%26b.test%28e%29%26%26%28d.click%28%29%2Cc%2B%2B%29%7D%29%2Cc%26%26console.debug%28%60%5BFB-Expander%5D%20clicked%20%24%7Bc%7D%60%29%2Cc%7D%2Cd%3D3e3%3Blet%20e%3DDate.now%28%29%2Cf%3Dnew%20MutationObserver%28%28%29%3D%3E%7Be%3DDate.now%28%29%7D%29%3Bf.observe%28document%2C%7BchildList%3A%210%2Csubtree%3A%210%7D%29%3Bconst%20g%3DsetInterval%28%28%29%3D%3E%7Bc%28%29%26%26%28e%3DDate.now%28%29%29%2CDate.now%28%29-e%3Ed%26%26%28clearInterval%28g%29%2Cf.disconnect%28%29%2Cconsole.log%28%60%5BFB-Expander%5D%20%E2%9C%85%20Done%20%E2%80%93%20settled%20for%20%24%7Bd%2F1e3%7Ds.%60%29%29%7D%2C400%29%3Bconsole.log%28%22%5BFB-Expander%5D%20%F0%9F%9A%80%20Started%E2%80%A6%22%29%2Cc%28%29%7D%29%28%29%3B" class="inline-block bg-indigo-600 text-white px-4 py-2 rounded-lg font-semibold text-sm hover:bg-indigo-500 transition-all duration-300 shadow-lg shadow-indigo-950/50 transform hover:-translate-y-px"
>
Facebook Comments Expander
</a>
<a href="https://github.com/minanagehsalalma/BookMarkletsWiki/tree/main/src/FBCommentsExpander" target="_blank" class="inline-block bg-white/5 text-slate-300 px-4 py-2 rounded-lg font-semibold text-sm hover:bg-white/10 transition-colors border border-white/10">View Code</a>
</div>
<div class="bg-red-500/10 border border-red-500/20 rounded-lg p-3 mt-4 text-red-300 text-sm">
<strong>Note:</strong> Check the browser console (F12) to see the expansion progress.
</div>
</div>
<div id="paywall-remover" class="bg-slate-500/5 border border-white/10 rounded-xl p-6 transition-all duration-300 hover:bg-white/10 hover:border-indigo-400/50 hover:-translate-y-1">
<div class="font-bold text-lg text-indigo-300 mb-1">PayWall Remover</div>
<div class="text-slate-400 mb-4">Removes paywalls from websites using multiple sources from removepaywall.com.</div>
<img src="https://raw.githubusercontent.com/minanagehsalalma/BookMarkletsWiki/main/src/NoPayWall/image.png" alt="PayWall Remover Screenshot" class="max-w-full h-auto rounded-lg shadow-md my-4 border border-white/10" style="max-height: 400px;">
<div class="flex flex-wrap items-center gap-3">
<a href="javascript:%28function%28%29%7Blocation.href%3D%27https%3A%2F%2Fremovepaywall.com%2Fsearch%3Furl%3D%2527%2BencodeURIComponent%28location.href%29%3B%7D%29%28%29%3B" class="inline-block bg-indigo-600 text-white px-4 py-2 rounded-lg font-semibold text-sm hover:bg-indigo-500 transition-all duration-300 shadow-lg shadow-indigo-950/50 transform hover:-translate-y-px"
>
PayWall Remover
</a>
<a href="https://github.com/minanagehsalalma/BookMarkletsWiki/tree/main/src/NoPayWall" target="_blank" class="inline-block bg-white/5 text-slate-300 px-4 py-2 rounded-lg font-semibold text-sm hover:bg-white/10 transition-colors border border-white/10">View Code</a>
</div>
</div>
<div id="medium-paywall-remover" class="bg-slate-500/5 border border-white/10 rounded-xl p-6 transition-all duration-300 hover:bg-white/10 hover:border-indigo-400/50 hover:-translate-y-1">
<div class="font-bold text-lg text-indigo-300 mb-1">Medium PayWall Remover</div>
<div class="text-slate-400 mb-4">Bypasses 'Members only' articles on Medium by using freedium.cfd.</div>
<img src="https://raw.githubusercontent.com/minanagehsalalma/BookMarkletsWiki/main/src/MediumPaywallRemove/image.png" alt="Medium PayWall Remover Screenshot" class="max-w-full h-auto rounded-lg shadow-md my-4 border border-white/10" style="max-height: 400px;">
<div class="flex flex-wrap items-center gap-3">
<a href="javascript:%28function%28%29%7Blocation.href%3D%27https%3A%2F%2Ffreedium.cfd%2F%27%2BencodeURIComponent%28location.href%29%3B%7D%29%28%29%3B" class="inline-block bg-indigo-600 text-white px-4 py-2 rounded-lg font-semibold text-sm hover:bg-indigo-500 transition-all duration-300 shadow-lg shadow-indigo-950/50 transform hover:-translate-y-px"
>
Medium PayWall Remover
</a>
<a href="https://github.com/minanagehsalalma/BookMarkletsWiki/tree/main/src/MediumPaywallRemove" target="_blank" class="inline-block bg-white/5 text-slate-300 px-4 py-2 rounded-lg font-semibold text-sm hover:bg-white/10 transition-colors border border-white/10">View Code</a>
</div>
</div>
</div>
<h2 id="developer">
Developer Tools
</h2>
<p>Bookmarklets useful for web developers, designers, and anyone inspecting web pages.</p>
<div class="not-prose space-y-6">
<div id="local-storage-exporter" class="bg-slate-500/5 border border-white/10 rounded-xl p-6 transition-all duration-300 hover:bg-white/10 hover:border-indigo-400/50 hover:-translate-y-1">
<div class="font-bold text-lg text-indigo-300 mb-1">Neat Local Storage Exporter</div>
<div class="text-slate-400 mb-4">Exports and imports localStorage of a selected domain without manual copying.</div>
<img src="https://raw.githubusercontent.com/minanagehsalalma/Neat-Local-Storage-Exporter/refs/heads/main/55.png" alt="Neat Local Storage Exporter Screenshot" class="max-w-full h-auto rounded-lg shadow-md my-4 border border-white/10" style="max-height: 400px;">
<div class="flex flex-wrap items-center gap-3">
<a href="javascript:%2F%2F%20Cross-Domain%20localStorage%20Manager%0A%2F%2F%20This%20creates%20a%20popup%20to%20help%20you%20copy%20data%20between%20domains%0A%0A%2F%2F%20Create%20the%20interface%0Aconst%20container%20%3D%20document.createElement%28%27div%27%29%3B%0Acontainer.style.cssText%20%3D%20%60%0A%20%20position%3A%20fixed%3B%20top%3A%2020px%3B%20right%3A%2020px%3B%20z-index%3A%2099999%3B%0A%20%20background%3A%20%231a1a1a%3B%20color%3A%20%23fff%3B%20padding%3A%2020px%3B%20border-radius%3A%2010px%3B%0A%20%20font-family%3A%20monospace%3B%20font-size%3A%2014px%3B%20box-shadow%3A%200%2010px%2030px%20rgba%280%2C0%2C0%2C0.5%29%3B%0A%20%20max-width%3A%20500px%3B%20max-height%3A%2080vh%3B%20overflow-y%3A%20auto%3B%0A%60%3B%0A%0Aconst%20title%20%3D%20document.createElement%28%27h3%27%29%3B%0Atitle.textContent%20%3D%20%27Cross-Domain%20localStorage%20Manager%27%3B%0Atitle.style.cssText%20%3D%20%27margin%3A%200%200%2015px%200%3B%20color%3A%20%234fc3f7%3B%27%3B%0Acontainer.appendChild%28title%29%3B%0A%0A%2F%2F%20Current%20domain%20info%0Aconst%20currentDomain%20%3D%20document.createElement%28%27div%27%29%3B%0AcurrentDomain.style.cssText%20%3D%20%27background%3A%20%232a2a2a%3B%20padding%3A%2010px%3B%20border-radius%3A%205px%3B%20margin-bottom%3A%2015px%3B%27%3B%0AcurrentDomain.innerHTML%20%3D%20%60%0A%20%20%3Cstrong%3ECurrent%20Domain%3A%3C%2Fstrong%3E%3Cbr%3E%0A%20%20%3Cspan%20style%3D%22color%3A%20%234caf50%3B%22%3E%24%7Bwindow.location.origin%7D%3C%2Fspan%3E%3Cbr%3E%0A%20%20%3Csmall%3EKeys%20found%3A%20%24%7BlocalStorage.length%7D%3C%2Fsmall%3E%0A%60%3B%0Acontainer.appendChild%28currentDomain%29%3B%0A%0A%2F%2F%20Export%20current%20domain%20data%0Aconst%20exportCurrentBtn%20%3D%20document.createElement%28%27button%27%29%3B%0AexportCurrentBtn.textContent%20%3D%20%60Export%20All%20from%20%24%7Bwindow.location.hostname%7D%60%3B%0AexportCurrentBtn.style.cssText%20%3D%20%60%0A%20%20width%3A%20100%25%3B%20background%3A%20%234caf50%3B%20color%3A%20white%3B%20border%3A%20none%3B%20padding%3A%2012px%3B%0A%20%20border-radius%3A%205px%3B%20cursor%3A%20pointer%3B%20margin-bottom%3A%2015px%3B%20font-weight%3A%20bold%3B%0A%60%3B%0AexportCurrentBtn.addEventListener%28%27click%27%2C%20%28%29%20%3D%3E%20%7B%0A%20%20const%20data%20%3D%20%7B%7D%3B%0A%20%20for%20%28let%20i%20%3D%200%3B%20i%20%3C%20localStorage.length%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20const%20key%20%3D%20localStorage.key%28i%29%3B%0A%20%20%20%20data%5Bkey%5D%20%3D%20localStorage.getItem%28key%29%3B%0A%20%20%7D%0A%20%20%0A%20%20const%20json%20%3D%20JSON.stringify%28data%2C%20null%2C%202%29%3B%0A%20%20navigator.clipboard.writeText%28json%29.then%28%28%29%20%3D%3E%20%7B%0A%20%20%20%20exportCurrentBtn.textContent%20%3D%20%27%E2%9C%93%20Copied%20to%20Clipboard%21%27%3B%0A%20%20%20%20setTimeout%28%28%29%20%3D%3E%20%7B%0A%20%20%20%20%20%20exportCurrentBtn.textContent%20%3D%20%60Export%20All%20from%20%24%7Bwindow.location.hostname%7D%60%3B%0A%20%20%20%20%7D%2C%202000%29%3B%0A%20%20%7D%29%3B%0A%20%20%0A%20%20console.log%28%27Exported%20localStorage%3A%27%2C%20json%29%3B%0A%7D%29%3B%0Acontainer.appendChild%28exportCurrentBtn%29%3B%0A%0A%2F%2F%20Import%20section%0Aconst%20importSection%20%3D%20document.createElement%28%27div%27%29%3B%0AimportSection.style.cssText%20%3D%20%27border-top%3A%201px%20solid%20%23333%3B%20padding-top%3A%2015px%3B%27%3B%0A%0Aconst%20importTitle%20%3D%20document.createElement%28%27h4%27%29%3B%0AimportTitle.textContent%20%3D%20%27Import%20Data%27%3B%0AimportTitle.style.cssText%20%3D%20%27margin%3A%200%200%2010px%200%3B%20color%3A%20%23ff9800%3B%27%3B%0AimportSection.appendChild%28importTitle%29%3B%0A%0Aconst%20importTextarea%20%3D%20document.createElement%28%27textarea%27%29%3B%0AimportTextarea.placeholder%20%3D%20%27Paste%20exported%20JSON%20data%20here...%27%3B%0AimportTextarea.style.cssText%20%3D%20%60%0A%20%20width%3A%20100%25%3B%20height%3A%20100px%3B%20background%3A%20%23333%3B%20color%3A%20%23fff%3B%20border%3A%201px%20solid%20%23555%3B%0A%20%20border-radius%3A%205px%3B%20padding%3A%2010px%3B%20font-family%3A%20monospace%3B%20font-size%3A%2012px%3B%0A%20%20resize%3A%20vertical%3B%20margin-bottom%3A%2010px%3B%0A%60%3B%0AimportSection.appendChild%28importTextarea%29%3B%0A%0Aconst%20importBtn%20%3D%20document.createElement%28%27button%27%29%3B%0AimportBtn.textContent%20%3D%20%27Import%20Data%20to%20This%20Domain%27%3B%0AimportBtn.style.cssText%20%3D%20%60%0A%20%20width%3A%20100%25%3B%20background%3A%20%232196f3%3B%20color%3A%20white%3B%20border%3A%20none%3B%20padding%3A%2010px%3B%0A%20%20border-radius%3A%205px%3B%20cursor%3A%20pointer%3B%20font-weight%3A%20bold%3B%0A%60%3B%0AimportBtn.addEventListener%28%27click%27%2C%20%28%29%20%3D%3E%20%7B%0A%20%20try%20%7B%0A%20%20%20%20const%20data%20%3D%20JSON.parse%28importTextarea.value%29%3B%0A%20%20%20%20let%20imported%20%3D%200%3B%0A%20%20%20%20%0A%20%20%20%20Object.keys%28data%29.forEach%28key%20%3D%3E%20%7B%0A%20%20%20%20%20%20localStorage.setItem%28key%2C%20data%5Bkey%5D%29%3B%0A%20%20%20%20%20%20imported%2B%2B%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20%0A%20%20%20%20importBtn.textContent%20%3D%20%60%E2%9C%93%20Imported%20%24%7Bimported%7D%20keys%21%60%3B%0A%20%20%20%20importBtn.style.background%20%3D%20%27%234caf50%27%3B%0A%20%20%20%20%0A%20%20%20%20setTimeout%28%28%29%20%3D%3E%20%7B%0A%20%20%20%20%20%20importBtn.textContent%20%3D%20%27Import%20Data%20to%20This%20Domain%27%3B%0A%20%20%20%20%20%20importBtn.style.background%20%3D%20%27%232196f3%27%3B%0A%20%20%20%20%7D%2C%203000%29%3B%0A%20%20%20%20%0A%20%20%20%20console.log%28%60Imported%20%24%7Bimported%7D%20localStorage%20keys%3A%60%2C%20Object.keys%28data%29%29%3B%0A%20%20%7D%20catch%20%28error%29%20%7B%0A%20%20%20%20importBtn.textContent%20%3D%20%27%E2%9C%97%20Invalid%20JSON%20data%27%3B%0A%20%20%20%20importBtn.style.background%20%3D%20%27%23f44336%27%3B%0A%20%20%20%20setTimeout%28%28%29%20%3D%3E%20%7B%0A%20%20%20%20%20%20importBtn.textContent%20%3D%20%27Import%20Data%20to%20This%20Domain%27%3B%0A%20%20%20%20%20%20importBtn.style.background%20%3D%20%27%232196f3%27%3B%0A%20%20%20%20%7D%2C%203000%29%3B%0A%20%20%7D%0A%7D%29%3B%0AimportSection.appendChild%28importBtn%29%3B%0Acontainer.appendChild%28importSection%29%3B%0A%0A%2F%2F%20Clear%20data%20option%0Aconst%20clearBtn%20%3D%20document.createElement%28%27button%27%29%3B%0AclearBtn.textContent%20%3D%20%27Clear%20All%20localStorage%20%28Danger%21%29%27%3B%0AclearBtn.style.cssText%20%3D%20%60%0A%20%20width%3A%20100%25%3B%20background%3A%20%23f44336%3B%20color%3A%20white%3B%20border%3A%20none%3B%20padding%3A%208px%3B%0A%20%20border-radius%3A%205px%3B%20cursor%3A%20pointer%3B%20margin-top%3A%2010px%3B%20font-size%3A%2012px%3B%0A%60%3B%0AclearBtn.addEventListener%28%27click%27%2C%20%28%29%20%3D%3E%20%7B%0A%20%20if%20%28confirm%28%27Are%20you%20sure%3F%20This%20will%20delete%20ALL%20localStorage%20data%20on%20this%20domain%21%27%29%29%20%7B%0A%20%20%20%20localStorage.clear%28%29%3B%0A%20%20%20%20clearBtn.textContent%20%3D%20%27%E2%9C%93%20Cleared%21%27%3B%0A%20%20%20%20setTimeout%28%28%29%20%3D%3E%20%7B%0A%20%20%20%20%20%20clearBtn.textContent%20%3D%20%27Clear%20All%20localStorage%20%28Danger%21%29%27%3B%0A%20%20%20%20%7D%2C%202000%29%3B%0A%20%20%7D%0A%7D%29%3B%0Acontainer.appendChild%28clearBtn%29%3B%0A%0A%2F%2F%20Close%20button%0Aconst%20closeBtn%20%3D%20document.createElement%28%27button%27%29%3B%0AcloseBtn.textContent%20%3D%20%27%C3%97%27%3B%0AcloseBtn.style.cssText%20%3D%20%60%0A%20%20position%3A%20absolute%3B%20top%3A%2010px%3B%20right%3A%2015px%3B%20background%3A%20none%3B%20border%3A%20none%3B%0A%20%20color%3A%20%23fff%3B%20font-size%3A%2024px%3B%20cursor%3A%20pointer%3B%20width%3A%2030px%3B%20height%3A%2030px%3B%0A%60%3B%0AcloseBtn.addEventListener%28%27click%27%2C%20%28%29%20%3D%3E%20%7B%0A%20%20document.body.removeChild%28container%29%3B%0A%7D%29%3B%0Acontainer.appendChild%28closeBtn%29%3B%0A%0Adocument.body.appendChild%28container%29%3B" class="inline-block bg-indigo-600 text-white px-4 py-2 rounded-lg font-semibold text-sm hover:bg-indigo-500 transition-all duration-300 shadow-lg shadow-indigo-950/50 transform hover:-translate-y-px"
>
Neat Local Storage Exporter
</a>
<a href="https://github.com/minanagehsalalma/Neat-Local-Storage-Exporter" target="_blank" class="inline-block bg-white/5 text-slate-300 px-4 py-2 rounded-lg font-semibold text-sm hover:bg-white/10 transition-colors border border-white/10">View Code</a>
</div>
<div class="bg-red-500/10 border border-red-500/20 rounded-lg p-3 mt-4 text-red-300 text-sm">
<strong>Note:</strong> To select another local storage within the same domain you select it from the browser's focus.<img src='https://raw.githubusercontent.com/minanagehsalalma/Neat-Local-Storage-Exporter/refs/heads/main/image.png' alt='Neat Local Storage Exporter' width='300' />
</div>
</div>
<div id="Toggle-Password-Visibility" class="bg-slate-500/5 border border-white/10 rounded-xl p-6 transition-all duration-300 hover:bg-white/10 hover:border-indigo-400/50 hover:-translate-y-1">
<div class="font-bold text-lg text-indigo-300 mb-1">Toggle Password Visibility</div>
<div class="text-slate-400 mb-4">Shows or hides all password fields on the page with each click. for sites that don't have the option.</div>
<img src="https://raw.githubusercontent.com/minanagehsalalma/BookMarkletsWiki/main/src/TogglePasswordVisibility/chrome_9RJPSvfq8K.gif" alt="Toggle Password Visibility Screenshot" class="max-w-full h-auto rounded-lg shadow-md my-4 border border-white/10" style="max-height: 400px;">
<div class="flex flex-wrap items-center gap-3">
<a href="javascript:%28function%28%29%7Bvar%20p%3Ddocument.querySelectorAll%28%27input%5Btype%3D%22password%22%5D%2Cinput%5Bdata-showing%3D%22true%22%5D%27%29%3Bp.forEach%28function%28e%29%7Bif%28e.type%3D%3D%3D%27password%27%29%7Be.dataset.showing%3D%27true%27%3Be.type%3D%27text%27%7Delse%7Be.type%3D%27password%27%3Bdelete%20e.dataset.showing%7D%7D%29%7D%29%28%29%3B" class="inline-block bg-indigo-600 text-white px-4 py-2 rounded-lg font-semibold text-sm hover:bg-indigo-500 transition-all duration-300 shadow-lg shadow-indigo-950/50 transform hover:-translate-y-px"
>
Toggle Password Visibility
</a>
<a href="https://github.com/minanagehsalalma/BookMarkletsWiki/tree/main/src/TogglePasswordVisibility" target="_blank" class="inline-block bg-white/5 text-slate-300 px-4 py-2 rounded-lg font-semibold text-sm hover:bg-white/10 transition-colors border border-white/10">View Code</a>
</div>
</div>
</div>
<h2>Contributing</h2>
<p>Have a favorite bookmarklet to share? Contributions are welcome! Simply submit a pull request with your bookmarklet added to the appropriate category.</p>
<h2>License</h2>
<p>This project is licensed under the MIT License.</p>
</main>
</div>
</body>
</html>