-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 loc) · 2.12 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
---
permalink: "/"
title: Bookmarklets
layout: page
---
<h1>Bookmarklets</h1>
<p>Tools for the browser</p>
<h2>Bookmark import file</h2>
<p>Bookmark import files are in
<a
href="https://web.archive.org/web/20230318225552/https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa753582%28v%3Dvs.85%29"
>Netscape bookmark format</a
>
to import into any browser.</p>
<ul>
<li><a href="data/bookmarks.html" download>All bookmarklets HTML</a></li>
<li><a href="data/auditing.html" download>Auditing bookmarklets HTML</a></li>
</ul>
<h2>Bookmarklet library</h2>
<p>Drag the bookmarklets that follow into your browser’s bookmark bar. Alternatively, paste the JS source code into the console of your browser’s development tool.</p>
<table>
<thead>
<tr>
<th scope="col">Bookmarklet</th>
<th scope="col">Description</th>
<th scope="col">JS source</th>
<th scope="col">Test page</th>
<th scope="col">Author</th>
</tr>
</thead>
<tbody>
{% for reference in bookmarklets -%}
<tr>
<td>
<a href="{{ reference.dist }}">{{ reference.bookmarklet }}</a>
</td>
<td>
{{ reference.description }}
</td>
<td>
<a href="bookmarklets/{{ reference.file }}"
>{{ reference.bookmarklet }} source</a
>
</td>
<td>
{% if reference.pageTest %}
{% if reference.pageTest == "self" %}
this page
{% else %}
<a href="{{ reference.file | replace: '.js', '/' }}"
>{{ reference.bookmarklet }} test page</a
>
{% endif %}
{% endif %}
</td>
<td>
<a href="{{ reference.sourceUrl }}">{{ reference.source }}</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<h2>Bookmarklet bookmarks</h2>
<p>A <a href="https://raindrop.io">raindrop.io</a> bookmarklets collection iframe embed follows.</p>
<iframe style="border: 0; width: 100%; height: 450px;" allowfullscreen frameborder="0" src="https://raindrop.io/brisketpolka/bookmarklets-49996062/embed/theme=light&hide=header%2C+tags%2C+add"></iframe>