This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·90 lines (79 loc) · 3.82 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Backtick</title>
<meta name="description"
content="Backtick is a console for bookmarklets and scripts, packaged as a Chrome extension.">
<link rel="chrome-webstore-item"
href="https://chrome.google.com/webstore/detail/daiejhinmmfgincamkeeobmpffhdljim">
<link rel="icon" href="/assets/images/backtick.png">
<link rel="stylesheet" href="/css/main.css">
<link rel="chrome-webstore-item"
href="https://chrome.google.com/webstore/detail/daiejhinmmfgincamkeeobmpffhdljim">
</head>
<body>
<div class="site-container">
<header>
<h1><img src="/assets/images/backtick.png" alt="Backtick">Backtick</h1>
<span class="subheading">Powerful Commands, Just One Tick Away</span>
</header>
<p class="sorry">
Sorry, this extension is for Chrome only.
</p>
<div class="buttons">
<!-- button class="try">Try it out</button -->
<button onclick="chrome.webstore.install();" class="install">Install it</button>
</div>
<div class="buttons not-chrome">
<!-- button class="try">Try it out</button -->
<button onclick="window.location='https://www.google.com/chrome/browser/desktop/index.html'">Install Chrome</button>
</div>
<div class="section">
<h2>What is it?</h2>
<p><strong>Backtick is a console for bookmarklets and scripts</strong>, packaged as a Chrome
extension. For a
better explanation, just click the <em>Install it</em> button then press the <em>backtick</em>
<code>(`)</code>
key on your keyboard.</p>
<p><strong>The extension comes with a set of predefined commands</strong>, you can checkout
the <a href="#library">library</a>, or even <a
href="http://bit.ly/2q55Y8D" target="_blank">create your own</a> to use
yourself or share with others.
</p>
<p>The rebuilt Backtick was made by <a
href="https://twitter.com/iambriansreed"
target="_blank">@iambriansreed</a>, and is <a
href="https://github.com/BacktickBacktick" target="_blank">open sourced on
GitHub</a>. The original version of Backtick was developed by <a
href="https://twitter.com/JoelBesada" target="_blank">@JoelBesada</a>.</p>
</div>
<div class="section command-library" id="library">
<h2>Commands Library</h2>
<p class="text-center">These are commands you can enable and disable in the options.
These are carefully reviewed and curated by the Backtick team.</p>
<ul class="commands-list"></ul>
</div>
<div class="section misc-commands">
<h2>Miscellaneous Commands</h2>
<p class="text-center">The following are gists forked from the original example command. Be
aware that these are not supported or reviewed so be careful.<br>This list is cached and
will be updated periodically.<br>Thanks to <a href="https://github.com/lyoshenka">@lyoshenka</a>
for the original list.</p>
<ul class="gists-list"></ul>
</div>
<div class="section">
<p class="share-links">
Share on: <a
href="https://twitter.com/home?status=Checkout%20this%20awesome%20Chrome%20Extension%20making%20the%20CLI%20commands%20for%20the%20browser%20awesome!%20http%3A//backtick.ninja"
target="_blank">Twitter</a> – <a
href="https://www.facebook.com/sharer/sharer.php?u=http%3A//backtick.ninja"
target="_blank">Facebook</a> – <a
href="https://plus.google.com/share?url=http%3A//backtick.ninja"
target="_blank">Google+</a>
</p>
</div>
</div>
<script src="/scripts/main.js"></script>
</body>
</html>