-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtester.html
47 lines (39 loc) · 1.97 KB
/
tester.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
<html>
<head>
<title>Test shell for script</title>
</head>
<body>
<h1>Go!</h1>
<div id="betstatus" style="border: 1px solid red;" contenteditable ></div>
<p>Bets are OPEN!</p>
<p>Igniz scarlet wins! Payouts to Team Red.</p>
<p>Bets are locked until the next match.</p>
<div id="balance">12,345</div>
<span id="odds" class="dynamic-view" style="display: inline;"><span class="redtext">Ryuko2nd </span> $287,225 <span class="bluetext"> Koakuma_ac </span> $560,862</span>
<br/>
<input id="player1" name="player1" type="submit" value="Ryuko2nd" class="betbuttonred">
<input id="player2" name="player2" type="submit" value="Koakuma_ac" class="betbuttonblue">
<br/>
<div id="sbettorswrapper" class="sidebar-view" style="width: 300px; display: block; background-color: gray;">
<div id="sbettors1" style="width: 139px; display: block; background-color: red;">p1 bets</div>
<div id="sbettors2" style="width: 139px; display: block; background-color: blue;">ps bets</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script type="text/javascript" src="https://rawgit.com/knadh/localStorageDB/v2.3.1/localstoragedb.js"></script>
<script type="text/javascript">
function GM_getResourceText() {
//stub
}
function GM_addStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
</script>
<script type="text/javascript" src="https://auto-miner-donsequitur.c9.io/auto-miner.user.js"></script>
</body>
</html>