-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
133 lines (118 loc) · 5.44 KB
/
Copy pathoptions.html
File metadata and controls
133 lines (118 loc) · 5.44 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<title>Roblox Tools - Settings</title>
<link type="text/css" rel="stylesheet" href="assets/styles.css">
<script src="options.js"></script>
</head>
<body>
<div class="inline">
<img src="assets/icon.png" width="50px">
<h2>Roblox Tools</h2>
<nav class="menu">
<ul>
<li><a id="accountsBtn" class="selected">Accounts</a></li>
<li><a id="settingsBtn" class="unselected">Settings</a></li> |
<li><a href="https://p1gyy.gitbook.io/robloxtools/" class="unselected">Wiki</a></li>
<li><a href="https://discord.gg/BErQJDzZ8j" class="unselected">Discord</a></li>
</ul>
</nav>
</div>
<!accounts>
<div id="accounts" class="section inactive">
<div class="inline header">
<h1>Your Accounts</h1>
<button class="red">Remove all accounts</button>
<button>Export Accounts</button>
<button>Import Accounts</button>
</div>
<hr>
<div id="acc-placeholder" class="inline account">
<img class="acc-img" src="assets/placeholderuser.png" width="50px">
<h2 class="acc-displayname">Piggy_Gaming</h2>
<h3 class="acc-username">(Piggy_Gam1ngg)</h3>
<button class="acc-edit red">Edit</button>
<button class="acc-copycookie">Copy Cookie</button>
<button class="acc-copylogin">Copy user:pass</button>
<p class="acc-id">00000000000000000</p>
</div>
<br>
</div>
<div class="rbxtools-popup editacc-popup">
<div class="rbxtoolslogo inline">
<img class="rbxtoolslogo" src="moz-extension://153cf850-5126-4973-8199-93a468b779cb/assets/icon.png" width="30px">
<p>Edit Account</p>
</div>
<input type="text" class="switchacc-search" value="search..."><br>
<!settings>
<div id="settings" class="section inactive">
<div class="inline header">
<h1>Settings</h1>
<button id="resetSettings" class="red">Reset all settings to default</button>
<button>Save settings</button>
</div>
<hr><br><br><br>
<h2 class="divider">general</h2>
<div class="inline setting boolean" id="unused_menus">
<span>Remove useless sidebar menus</span>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
<h2 class="info">removes the unneccicary roblox store and giftcard menus for a cleaner sidebar</h2>
<hr></div>
<h2 class="divider">account manager</h2>
<div class="inline parent setting boolean" id="accounts_saveask">
<span>Ask to save accounts upon login</span>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
</div>
<div class="inline child setting boolean" id="accounts_autosave" data-parent="accounts_saveask" data-parentcondition="false">
<span><i>-</i> Automatically save accounts upon login</span>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
<hr></div>
<div class="inline setting boolean" id="accounts_savepass">
<span>Save account passwords</span>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
<hr></div>
<div class="inline setting boolean" id="accounts_autoswitch">
<span>Always open switch accounts upon game launch</span>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
<hr></div>
<div class="inline setting boolean" id="quick_withdraw_toggle">
<span>Enable Quick Withdraw</span>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
<h2 class="info">allows for a quick and easy way to withdraw group funds to any account</h2>
<hr></div>
<div class="inline setting input" id="targetGroup">
<span>Quick Withdraw Group Id</span>
<input></input>
<hr></div>
<h2 class="divider">keybinds (not configurable yet)</h2>
<div class="inline setting keybind" id="keybinds_swichaccount">
<span>Switch accounts</span>
<kbd>Shift + S</kbd>
<hr></div>
<div class="inline setting keybind" id="keybinds_swichaccount_game">
<span>Switch accounts and launch game</span>
<kbd>Shift + Click</kbd>
<h2 class="info">hold this key and click the join button to bring up the switch accounts menu</h2>
<hr></div>
<br>
</div>
</body>
</html>