This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathindex.html
80 lines (68 loc) · 3.9 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
<!DOCTYPE html>
<html>
<head>
<title>Obsidian Clipper </title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
</head>
<body>
<main>
<h1>Obsidian Clipper <sup style="background-color: rgb(254, 75, 75); border-radius: 10px; font-size: 30px; padding: 5px;">BETA</sup></h1>
<hr>
<h2 class="subtitle">An unoffical <a href="https://obsidian.md/">Obsidian</a> clipper for Chrome</h2>
<p class="description">
This is an unofficial clipper for <a href="https://obsidian.md/">Obsidian</a> that allows you to easily clip a selection to a note in
Obsidian. Made by <a href="http://jplattel.nl/">Joost Plattel</a>.
This plugin is available as open-source on <a href="https://github.com/jplattel/obsidian-clipper">Github</a>.
</p>
<button onclick="window.location='http://github.com/jplattel/obsidian-clipper/'">
Download & install through Github
</button>
<h2>Screencast</h2>
<img src="demo.gif" alt="" id="screencast" style="width: 100%;">
<h2>Features</h2>
<ul class="features">
<li>Specify a vault & note to clip to</li>
<li>Automatically open Obsidian</li>
<li>Configure your custom clipping template with placeholders</li>
<li>Clip plain text or formatted markdown</li>
<li><i>And more coming!</i></li>
</ul>
<h2>FAQ</h2>
<dl id="faq">
<dt>
Why do I need to approve <code>https://jplattel.github.io/obsidian-clipper/clip.html</code>
to open Obsidian?
</dt>
<dd>
This is the redirect page that opens Obsidian with the right vault & note. You will only need to
approve this once, further clips will use the same page and thus not require additional authorization.
</dd>
<dt>How safe is this extension to use?</dt>
<dd>
I'm not storing or receiving any details about the clippings you do. In case of doubt, find someone
technical that can review <a href="https://github.com/jplattel/obsidian-clipper">the code</a> and figure out if it's safe!
</dd>
<dt>Why can't I install this via the normal Chrome plugin store?</dt>
<dd>
This plugin uses a loophole to open the obsidian vault via a redirect to a page who does the redirect based on parameters.
While this functionality is standard, the Chrome store surely wouldn't allow it.
</dd>
<dt>Is there a firefox extension available as well!</dt>
<dd>
Yup! But it needs some work to install, have a look at the <a href="https://github.com/jplattel/obsidian-clipper">readme</a>.
</dd>
<dt>Who made this and why?!</dt>
<dd>
Well, I'm glad you asked! That would be me, <a href="http://jplattel.nl/">Joost</a>.
As for why? I'd like to tinker around! Curious about more? Feel free to sign up to <a href="http://curiouscorner.nl/">my monthly newsletter</a>!
</dd>
<dt>Want to support further development?</dt>
<dd>
Feel free to support me through <a href="https://ko-fi.com/R6R62KRKX">Ko-Fi</a>.
</dd>
</dl>
</main>
<a target="_blank" rel="noopener" class="by-jplattel" href="https://jplattel.nl/"><img src="https://jplattel.nl/img/joostplattel_small_cropped.png" /><p>by jplattel</p></a>
</body>
</html>