forked from FoxRefire/wvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
60 lines (53 loc) · 2.02 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
<html>
<head>
<meta charset="UTF-8">
<title>Widevine L3 Guessor 2024</title>
<style>div{display:none}</style>
</head>
<body>
<div id="noEME" style="display:block">
Widevine content hasn't detected in this page.<br>
Open widevine-protected website and try again!
</div>
<div id="home">
<form id="wvForm">
<label for="guessr">Guessr API</label>
<input type="text" id="guessr" value="http://127.0.0.1:18888" disabled/>
<input type="radio" value="public" name="apiType" checked>Public
<input type="radio" value="local" name="apiType">Local
<input type="radio" value="custom" name="apiType">Custom
<br>
<label for="pssh">PSSH</label>
<input type="text" id="pssh" disabled/>
<input type="hidden" id="psshIndex" />
<input type="button" id="psshButton" value="Select" /><br>
<label for="license">License URL</label>
<input type="text" id="license" disabled/>
<input type="hidden" id="licenseIndex" />
<input type="button" id="licenseButton" value="Select" /><br>
<label for="challengeScheme">Challenge scheme</label>
<select id="challengeScheme">
<option value="raw">Raw</option>
<option value="b64">Base64</option>
</select><br>
<label for="licenseScheme">License scheme</label>
<select id="licenseScheme">
<option value="raw">Raw</option>
<option value="b64">Base64</option>
</select><br>
<input type="button" id="guess" value="Guess!"><br>
<label for="result" disabled>Result:</label><br>
<textarea id="result" rows="10" cols="50"></textarea>
</form>
</div>
<div id="selectPssh">
<input type="text" id="psshSearch" placeholder="Search">
<ul id="psshList"></ul>
</div>
<div id="selectRequest">
<input type="text" id="requestSearch" placeholder="Search">
<ul id="requestList"></ul>
</div>
</body>
<script src="popup.js"></script>
</html>