forked from mohamedmansour/extended-share-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
109 lines (109 loc) · 4.37 KB
/
options.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>Extended Share for Google Plus</title>
<link rel="stylesheet" type="text/css" href="/css/common.css" />
<link rel="stylesheet" type="text/css" href="/css/options.css" />
<link rel="stylesheet" type="text/css" href="/css/options_custom.css" />
<script type="text/javascript" src="/js/functions.js"></script>
<script type="text/javascript" src="/js/extended_shares.js"></script>
<script type="text/javascript" src="/js/options.js"></script>
</head>
<body>
<div id="body-container">
<div id="header">
<div class="widget">
<div class="g-plus" data-href="https://plus.google.com/116805285176805120365?rel=author" data-width="300" data-height="69"></div>
</div>
<h1>Extended Share <em id="version"></em></h1>
<p>
<a
href="https://chrome.google.com/webstore/detail/oenpjldbckebacipkfbcoppmiflglnib">
Visit extension page
</a>,
<a
href="https://github.com/mohamedmansour/extended-share-extension/">
File bugs and suggestions
</a><br/>
</p>
</div>
<div id="main">
<div class="extension-template">
<div class="extension-header">Support my open source development!</div>
<div class="extension-options">
<dl>
<dt>My <strong>Code for Charity</strong> fundraiser! </dt>
<dd>
<span>Help the cause and </span>
<button id="charity">Donate on CrowdRise!</button>
<span>It will really make a difference and will give me energy and motivation to continue coding :) </span>
</dd>
<dt>Support future <strong>open source</strong> projects</dt>
<dd>
<span>Donate to my </span>
<button id="donate">Paypal</button>
<span>so I can use the funds to develop (server costs, hardware) more projects.</span>
</dd>
</dl>
</div>
</div>
<div class="extension-template">
<div class="extension-header">Shares</div>
<div class="extension-options">
<dl>
<dt>What share icons to show?<br/> This will not autoshare.</dt>
<dd>
<div id="container-shares"></div>
</dd>
</dl>
<div class="clear"></div>
</div>
</div>
<div class="extension-template">
<div class="extension-header">Customizable Options</div>
<div class="extension-options">
<dl>
<dt>Open share as a popup</dt>
<dd>
<label for="open_as_popup"><input type="checkbox" id="open_as_popup" /></label>
<span class="note">If checked, this will create a popup window for the share.</span>
</dd>
<dt>Auto close shelf box</dt>
<dd>
<label for="auto_close_shelf"><input type="checkbox" id="auto_close_shelf" /></label>
<span class="note">If checked, the share shelf will automatically close when you click on any share item or option.</span>
</dd>
<dt>Use post's link as share URL</dt>
<dd>
<label for="use_link"><input type="checkbox" id="use_link" /></label>
<span class="note">If a post has a link, then that link is shared and not the Google+ post URL.</span>
</dd>
</dl>
</div>
</div>
<div class="extension-template">
<div class="extension-header">Misc</div>
<div class="extension-options">
<p>If you would like to be notified of major upgrades to this extension,
please make sure the box below is unchecked. You wont be spammed.</p>
<dl>
<dt>Opt-Out of future notifications:</dt>
<dd>
<label for="opt_out"><input type="checkbox" id="opt_out" /></label>
</dd>
</dl>
</div>
</div>
</div>
<div id="footer">
<div id="buttons">
<button id="button-close">Close</button>
</div>
<div id="credits">
Extension developed by <a href="http://mohamedmansour.com">Mohamed Mansour</a>,
Source Code available in <a href="https://github.com/mohamedmansour/extended-share-extension/">GitHub</a>
</div>
</div>
</div>
</body>
</html>