forked from sgzwiz/switchyplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
111 lines (106 loc) · 4.7 KB
/
popup.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
110
111
<!--
Copyright (c) 2011 Shyc2001 (http://twitter.com/shyc2001)
This work is based on:
*"Switchy! Chrome Proxy Manager and Switcher" (by Mohammad Hejazi (mohammadhi at gmail d0t com))
*"SwitchyPlus" by @ayanamist (http://twitter.com/ayanamist)
This file is part of SwitchySharp.
SwitchySharp is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
SwitchySharp is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with SwitchySharp. If not, see <http://www.gnu.org/licenses/>.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="assets/styles/popup.css" type="text/css">
<script src="assets/libs/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="assets/libs/parseUri.js" type="text/javascript"></script>
<script src="assets/scripts/popup.js" type="text/javascript"></script>
</head>
<body data-i18n-values=".style.direction:global_direction;.style.textAlign:global_textAlign">
<div id="menu">
<div id="directConnection" name="[Direct Connection]" class="item proxy" title="Disable Proxy"
data-i18n-values="title:proxy_directConnection_help">
<div class="icon"></div>
<span data-i18n-content="proxy_directConnection">Direct Connection</span>
</div>
<div id="separatorProxies" class="separator"></div>
<div id="proxies">
<div class="templateItem" title="">
<div class="icon"></div>
<span>Proxy</span>
</div>
</div>
<div id="separatorRules" class="separator"></div>
<div id="systemProxy" name="[System Proxy]" class="item proxy" title="Use System Proxy (need restart)"
data-i18n-values="title:proxy_systemProxy_help">
<div class="icon"></div>
<span data-i18n-content="proxy_systemProxy">System Proxy</span>
</div>
<div id="separatorOptions" class="separator"></div>
<div id="menuOptions" class="item">
<img src="assets/images/options.png"/><span data-i18n-content="popup_options">Options</span>
</div>
<div id="menuAbout" class="item">
<img src="assets/images/about.png"/><span data-i18n-content="popup_aboutSwitchy">About SwitchySharp</span>
</div>
</div>
<div id="about">
<div class="close"><img src="assets/images/close.png"/></div>
<div class="header">
<table>
<tr>
<td><img src="assets/images/icon-128.png" width="70"/></td>
<td>
<table class="titleTable">
<tr>
<td colspan="2">
<div class="title">SwitchySharp</div>
</td>
</tr>
<tr>
<td width="1" class="version" data-i18n-content="popup_version">version</td>
<td class="version"><span class="versionNumber">version number here</span></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div class="body">
<div id="developer">
<div class="name">
<table>
<tr>
<td data-i18n-content="popup_developedBy">Developed by</td>
<td>@Shyc2001</td>
</tr>
<tr>
<td data-i18n-content="popup_basedOn">Based on the work of</td>
<td>Mhd Hejazi & ayanamist.</td>
</tr>
</table>
</div>
</div>
<span>
<img src="assets/images/web.png" valign="middle"/>
<a href="" id="openMainWebsite" data-i18n-content="popup_switchyWebPage">Switchy! web
page</a></span><br/>
<img src="assets/images/web.png" valign="middle"/>
<a href="" id="openPlusWebsite" data-i18n-content="popup_switchyPlusWebPage">SwitchyPlus web
page</a><br/>
<span><img src="assets/images/web.png" valign="middle"/>
<a href="" id="openSupportWebsite" data-i18n-content="popup_supportAndBugReports">Support &
Bug reports</a></span><br/>
</div>
<div class="footer">
<div data-i18n-content="popup_copyright">Copyright © 2011 @Shyc2001.<br/>Some rights reserved.</div>
</div>
</div>
</body>
</html>