-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathoptions.html
More file actions
100 lines (98 loc) · 3.3 KB
/
options.html
File metadata and controls
100 lines (98 loc) · 3.3 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
<!doctype html>
<meta charset="utf-8">
<title>Options — Buffer for Chrome</title>
<link rel="stylesheet" href="data/chrome/options/css/options.css">
<div class="wrapper">
<header>
<menu>
<ul>
<li>
<a href='mailto:hello@buffer.com?subject=Chrome Extension' title="Email the Buffer Team">Get in touch</a>
</li>
</ul>
</menu>
<img src="data/chrome/options/img/buffer-logo-small.png">
<h1>Make <strong>Buffer</strong> work <em>perfectly</em> for you.</h1>
</header>
<div class="options">
<div class="field">
<h2 for="site">Buffer Integration</h2>
<fieldset>
<div class="checkbox">
<label for="twitter">
<input type="checkbox" id="twitter" name="site" value="twitter">Twitter
</label>
</div>
<div class="checkbox">
<label for="facebook">
<input type="checkbox" id="facebook" name="site" value="facebook">Facebook
</label>
</div>
<div class="checkbox">
<label for="tweetdeck">
<input type="checkbox" id="tweetdeck" name="site" value="tweetdeck">Tweetdeck
</label>
</div>
<div class="checkbox">
<label for="pinterest">
<input type="checkbox" id="pinterest" name="site" value="pinterest">Pinterest
</label>
</div>
<!--<div class="checkbox">
<label for="quora">
<input type="checkbox" id="quora" name="site" value="quora">Quora
</label>
</div>-->
<div class="checkbox">
<label for="github">
<input type="checkbox" id="github" name="site" value="github">Github
</label>
</div>
<div class="checkbox">
<label for="reddit">
<input type="checkbox" id="reddit" name="site" value="reddit">Reddit
</label>
</div>
<div class="checkbox">
<label for="hacker">
<input type="checkbox" id="hacker" name="site" value="hacker">Hacker News
</label>
</div>
</fieldset>
</div>
<div class="field">
<h2>Keyboard Shortcut</h2>
<fieldset>
<input type="text" placeholder="alt+b" name="key-combo">
<small>Keys separated by '+'. Eg. 'alt+shift+b' or 'ctrl+b'.</small>
<small class="checkbox">
<input type="checkbox" name="key-enable" value="key-enable" checked>Use key shortcut?
</small>
</fieldset>
</div>
<div class="field">
<h2 for="site">Buffer Button Overlays</h2>
<fieldset>
<div class="checkbox">
<label for="image-overlays">
<input type="checkbox" id="image-overlays" name="site" value="image-overlays" checked>Images
</label>
</div>
</fieldset>
</div>
<div class="field">
<h2></h2>
<fieldset>
<a class="submit saved" href="#">Saved</a>
<small>
or <a class="other" href="http://buffer.com/extras" target="_blank">find other ways to add to Buffer...</a>
<aside>
Please <strong>refresh</strong> any open pages after making changes.
</aside>
</small>
</fieldset>
</div>
</div>
</div>
<script src="data/shared/libs/jquery-2.1.1.min.js"></script>
<script src="data/chrome/options/options.js"></script>